Skip to content

Bump versions in matrix sample #166

Bump versions in matrix sample

Bump versions in matrix sample #166

Workflow file for this run

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.7.0', '2.6.4.3', '2.6.3']
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