-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add meta.yml and generate boilerplate from templates
- Loading branch information
Showing
7 changed files
with
179 additions
and
51 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: Check links | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- '**' | ||
|
||
jobs: | ||
check-links: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Set up Git repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Check for broken Markdown links | ||
uses: gaurav-nelson/github-action-markdown-link-check@v1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# This file was generated from `meta.yml`, please do not edit manually. | ||
# Follow the instructions on https://github.com/coq-community/templates to regenerate. | ||
name: Docker CI | ||
|
||
on: | ||
schedule: | ||
- cron: '0 8 * * TUE' | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- '**' | ||
|
||
jobs: | ||
build: | ||
# the OS must be GNU/Linux to be able to use the docker-coq-action | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
image: | ||
- 'coqorg/coq:dev' | ||
fail-fast: false | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: coq-community/docker-coq-action@v1 | ||
with: | ||
opam_file: 'coq-tricks.opam' | ||
custom_image: ${{ matrix.image }} | ||
|
||
|
||
# See also: | ||
# https://github.com/coq-community/docker-coq-action#readme | ||
# https://github.com/erikmd/docker-coq-github-action-demo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
-R . Top | ||
-R src Tricks |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
opam-version: "2.0" | ||
maintainer: "[email protected]" | ||
version: "dev" | ||
|
||
homepage: "https://github.com/coq-community/coq-tricks" | ||
dev-repo: "git+https://github.com/coq-community/coq-tricks.git" | ||
bug-reports: "https://github.com/coq-community/coq-tricks/issues" | ||
license: "MIT" | ||
|
||
synopsis: "Tips, tricks, and features in Coq that are hard to discover" | ||
description: """ | ||
Some tips, tricks, and features in Coq that are hard to discover. | ||
|
||
If you have a trick you've found useful feel free to submit an issue or pull request!""" | ||
|
||
build: [make "-j%{jobs}%"] | ||
depends: [ | ||
"coq" {= "dev"} | ||
] | ||
|
||
tags: [ | ||
"category:Miscellaneous/Coq Use Examples" | ||
"keyword:tricks" | ||
"keyword:tips" | ||
"logpath:Tricks" | ||
] | ||
authors: [ | ||
"Tej Chajed" | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
--- | ||
fullname: Tricks in Coq | ||
shortname: coq-tricks | ||
organization: coq-community | ||
community: true | ||
action: true | ||
opam_name: coq-tricks | ||
branch: main | ||
|
||
synopsis: >- | ||
Tips, tricks, and features in Coq that are hard to discover | ||
description: |- | ||
Some tips, tricks, and features in Coq that are hard to discover. | ||
If you have a trick you've found useful feel free to submit an issue or pull request! | ||
authors: | ||
- name: Tej Chajed | ||
initial: true | ||
|
||
maintainers: | ||
- name: Tej Chajed | ||
nickname: tchajed | ||
|
||
opam-file-maintainer: [email protected] | ||
|
||
opam-file-version: dev | ||
|
||
license: | ||
fullname: The code in the repository is licensed under the terms of the MIT license. The documentation (including this README) is licensed under the CC0 license. | ||
identifier: MIT | ||
|
||
supported_coq_versions: | ||
text: Coq master | ||
opam: '{= "dev"}' | ||
|
||
tested_coq_opam_versions: | ||
- version: 'dev' | ||
|
||
# Tuesday 8am UTC (3am EST) | ||
ci_cron_schedule: '0 8 * * TUE' | ||
|
||
namespace: Tricks | ||
|
||
build: |- | ||
## Building instructions | ||
``` shell | ||
git clone https://github.com/coq-community/coq-tricks | ||
cd coq-tricks | ||
make # or make -j <number-of-cores-on-your-machine> | ||
``` | ||
keywords: | ||
- name: tricks | ||
- name: tips | ||
|
||
categories: | ||
- name: Miscellaneous/Coq Use Examples | ||
--- |