Support for v2.7.0.1 (#224) #173
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: matrix | |
on: | |
push: | |
branches: ['main'] | |
jobs: | |
check: | |
name: Check hello-world-proof.agda | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macOS-latest, windows-latest] | |
agda-version: ['2.6.4.3', '2.6.3', '2.6.2.2'] | |
exclude: | |
# Exclude older Agda versions for macOS (>=14) | |
- agda-version: '2.6.2.2' | |
os: macos-14 | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
# Setup the versions of Agda specified in the matrix, | |
# together with their recommended versions of agda-stdlib: | |
- uses: wenkokke/setup-agda@v2 | |
with: | |
agda-version: ${{ matrix.agda-version }} | |
agda-stdlib-version: 'recommended' | |
# Check hello-world-proof.agda, which you can find in tests/agda-stdlib: | |
- run: agda hello-world-proof.agda | |
working-directory: tests/agda-stdlib |