Eta conversion for functions #211
Workflow file for this run
This file contains hidden or 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: | |
| jobs: | |
| nix-build: | |
| name: ${{ matrix.pretty }} with nix (${{ matrix.derivation }}) | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| derivation: [agda-core-hs, agda-core-lib] | |
| include: | |
| - pretty: "Build Haskell library" | |
| derivation: agda-core-hs | |
| - pretty: "Typecheck with Agda" | |
| derivation: agda-core-lib | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: nixbuild/nix-quick-install-action@v34 | |
| with: | |
| nix_conf: | | |
| keep-env-derivations = true | |
| keep-outputs = true | |
| - name: Restore and save Nix store | |
| uses: nix-community/cache-nix-action@v6 | |
| with: | |
| # restore and save a cache using this key | |
| primary-key: nix-${{ matrix.derivation }}-${{ hashFiles('**/*.nix', '**/flake.lock') }} | |
| - run: nix build .#${{ matrix.derivation }} --print-build-logs |