Merge branch 'coq8.12' into coq8.13 #142
Workflow file for this run
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: CI | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: coq-community/[email protected] | |
with: | |
opam_file: 'coq-tactician-stdlib.opam' | |
coq_version: '8.13' | |
ocaml_version: '4.13-flambda' | |
install: | | |
startGroup "Install dependencies" | |
opam repo add coq-extra-dev https://coq.inria.fr/opam/extra-dev | |
opam pin add -n -y -k path $PACKAGE $WORKDIR | |
opam update -y | |
opam install -y -j 2 $PACKAGE --deps-only | |
endGroup |