Update Logbook #14
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: CI | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
check: | |
name: Typecheck Agda | |
runs-on: ubuntu-latest # or macOS-latest, or windows-latest | |
steps: | |
- name: 📥 Checkout repository | |
uses: actions/checkout@v4 | |
# Setup Agda 2.6.3 with its recommended version of agda-stdlib and | |
# uses standard-library as default | |
- name: ❄ Setup Agda | |
uses: wenkokke/setup-agda@v2 | |
with: | |
agda-version: '2.6.3' | |
agda-stdlib-version: 'recommended' | |
agda-defaults: | | |
standard-library | |
- name: ❓ Typecheck | |
run: | | |
make typecheck |