Proved n_yank_r/l, using a large number of helper lemmas. The code is… #13
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
name: Coq Build | |
on: | |
push: | |
branches: ['main'] | |
pull_request: | |
branches: ['**'] # for all submitted Pull Requests | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
coq_version: | |
- '8.14' | |
- '8.15' | |
- '8.16' | |
- '8.17' | |
- '8.18' | |
- 'dev' | |
ocaml_version: | |
- 'default' | |
fail-fast: false # don't stop jobs if one fails | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: coq-community/docker-coq-action@v1 | |
with: | |
opam_file: 'coq-vicar.opam' | |
coq_version: ${{ matrix.coq_version }} | |
ocaml_version: ${{ matrix.ocaml_version }} | |