Skip to content

Support Agda v2.7.0 (#218) #424

Support Agda v2.7.0 (#218)

Support Agda v2.7.0 (#218) #424

Workflow file for this run

name: setup latest
on:
push:
branches: ['main']
paths: ['**.ts', '**.js', '**.json', '**.yml']
# Limit concurrent runs to one per branch
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
################################################################################
# Setup Agda (latest) on every supported platform
################################################################################
setup-latest:
name: Setup Agda (latest) on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Setup Agda
uses: ./
with:
force-no-build: true
agda-version: 'latest'
agda-stdlib-version: 'recommended'
- name: Test Agda
run: |
agda -v0 greet.agda
shell: sh
working-directory: tests/agda
- name: Test Agda with agda-stdlib
run: |
agda -v0 hello-world-dep.agda
agda -v0 hello-world-dep-lookup.agda
agda -v0 hello-world-proof.agda
shell: sh
working-directory: tests/agda-stdlib
strategy:
fail-fast: false
matrix:
os:
[
ubuntu-22.04,
ubuntu-20.04,
macos-12,
macos-14,
windows-2019,
windows-2022
]