Skip to content

Merge pull request #784 from LPCIC/fix-780 #152

Merge pull request #784 from LPCIC/fix-780

Merge pull request #784 from LPCIC/fix-780 #152

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
branches: [ master ]
tags: [ "v*.*.*" ]
pull_request:
branches: [ master ]
jobs:
docker:
runs-on: ubuntu-latest # container actions require GNU/Linux
strategy:
matrix:
image:
- 'rocq/rocq-prover:dev'
- 'rocq/rocq-prover:9.0'
- 'coqorg/coq:8.20'
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: 'rocq-elpi.opam'
custom_image: ${{ matrix.image }}
after_script: |
sudo chmod -R a+w .
make all-examples
make all-tests
export: 'OPAMWITHTEST OPAMIGNORECONSTRAINTS OPAMVERBOSE' # space-separated list of variables
env:
OPAMWITHTEST: 'true'
OPAMIGNORECONSTRAINTS: 'coq'
OPAMVERBOSE: '3'