Merge pull request #18 from CatalaLang/expressible-values-miniml #307
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 latest" | |
on: | |
push: | |
schedule: | |
# Prime the caches every Monday | |
- cron: 0 1 * * MON | |
permissions: read-all | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/catalalang/catala-coq-ci | |
steps: | |
- name: Check Coq installation | |
run: coqc --version | |
coqc -where | |
- name: Checkout tree | |
uses: actions/checkout@v1 | |
- name: Build project | |
run: dune build | |
- name: Run tests | |
run: dune runtest |