2CC Idempotency Elimination #288
Workflow file for this run
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: Check the Agda files | |
on: | |
push: | |
branches: [ "main", "develop" ] | |
pull_request: | |
branches: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Nix with cached packages | |
uses: rikhuijzer/[email protected] | |
with: | |
key: nix-${{ hashFiles('.github/workflows/check.yml', 'default.nix', 'nix/**') }} | |
nix_file: nix/github-workflow-dependencies.nix | |
- name: Check Agda files | |
run: nix-shell --run './scripts/check-all.sh github-action' | |
- name: Check for sources of inconsistencies | |
run: nix-shell --run './scripts/find-inconsistency-sources.sh --ci' |