Add module hierarchy Agda2Hs.Language.Haskell
#197
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: Nix CI | |
# Trigger the workflow on push or pull request, but only for the master branch | |
on: | |
pull_request: | |
push: | |
paths: | |
- 'lib/**' | |
- 'src/**' | |
- 'test/**' | |
- 'lib/base/base.agda-lib' | |
- 'agda2hs.cabal' | |
- 'cabal.project' | |
- 'Makefile' | |
- 'flake.*' | |
- 'nix/*' | |
- '.github/workflows/**.yml' | |
branches: [master] | |
jobs: | |
nix-build: | |
name: ${{ matrix.pretty }} with nix (${{ matrix.derivation }}) | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
derivation: [agda2hs, base-lib] | |
include: | |
- pretty: "Compile agda2hs" | |
derivation: agda2hs | |
- pretty: "Typecheck with Agda" | |
derivation: base-lib | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: nixbuild/nix-quick-install-action@v30 | |
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 | |
nix-shell: | |
name: "Test building inside a nix shell" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: nixbuild/nix-quick-install-action@v30 | |
with: | |
nix_conf: | | |
keep-env-derivations = true | |
keep-outputs = true | |
- name: Restore and save Nix store | |
uses: nix-community/cache-nix-action@v6 | |
with: | |
primary-key: nix-devshell-${{ hashFiles('**/*.nix', '**/flake.lock') }} | |
- name: drop into the devshell and run cabal | |
# for some reason this doesn't work without update | |
# even though it doesn't actually download anything | |
run: nix develop -Lv -c bash -c "cabal update; cabal v1-build" |