Smarter CI #1
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: Coq Tests | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- '**' | |
paths: | |
- '.github/workflows/coq-tests.yml' | |
- 'tox.ini' | |
- 'python/coqtop.py' | |
- 'python/xmlInterface.py' | |
- 'tests/test_coqtop.py' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
coq-tests: | |
name: Coq integration tests | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
coq_version: | |
- '8.4' | |
- '8.5' | |
- '8.6' | |
- '8.7' | |
- '8.8' | |
- '8.9' | |
- '8.10' | |
- '8.11' | |
- '8.12' | |
- '8.13' | |
- '8.14' | |
- '8.15' | |
- '8.16' | |
- '8.17' | |
- 'master' | |
py_version: ['3.6'] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Nix | |
uses: cachix/install-nix-action@v22 | |
with: | |
nix_path: nixpkgs=channel:nixpkgs-unstable | |
- name: Install Cachix | |
uses: cachix/cachix-action@v12 | |
with: | |
name: coq | |
skipPush: true | |
- name: Set up Nix cache | |
uses: DeterminateSystems/magic-nix-cache-action@v2 | |
- name: Install Coq ${{ matrix.coq_version }} | |
run: nix-env -j auto --cores 0 -i -f ci/coq.nix --argstr version ${{ matrix.coq_version }} | |
- name: Install Python ${{ matrix.py_version }} | |
# Allow installing Python 3.6. | |
uses: MatteoH2O1999/setup-python@v1 | |
# uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.py_version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install tox | |
- name: Run Coq tests | |
run: | | |
coqtop --version | |
python --version | |
tox -e coq-py36 |