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: minimal | |
on: | |
push: | |
branches: ['main'] | |
jobs: | |
check: | |
name: Check greet.agda | |
runs-on: ubuntu-latest # or macOS-latest, or windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
# Setup the latest version of Agda: | |
- uses: wenkokke/setup-agda@v2 | |
# Check greet.agda, which you can find in tests/agda: | |
- run: agda greet.agda | |
working-directory: tests/agda |