-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
34 additions
and
24 deletions.
There are no files selected for viewing
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,33 @@ | ||
# 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: | ||
- 'coqorg/coq:dev' | ||
- 'coqorg/coq:8.20.0' | ||
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-elpi.opam' | ||
custom_image: ${{ matrix.image }} | ||
export: 'OPAMWITHTEST OPAMIGNORECONSTRAINTS OPAMVERBOSE' # space-separated list of variables | ||
env: | ||
OPAMWITHTEST: 'true' | ||
OPAMIGNORECONSTRAINTS: 'coq' | ||
OPAMVERBOSE: '3' |
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