This repository has been archived by the owner on Oct 28, 2024. It is now read-only.
[feat] update for compatibility with ghc 9.8 #11
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 Flake" | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
jobs: | |
install-nix: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: cachix/install-nix-action@v27 | |
with: | |
github_access_token: ${{ secrets.GITHUB_TOKEN }} | |
- run: nix flake check -Lv --allow-import-from-derivation --fallback --accept-flake-config | |
- run: nix build .#ghc96-transitive-anns -Lv --fallback --accept-flake-config | |
- run: nix build .#ghc98-transitive-anns -Lv --fallback --accept-flake-config | |
- run: nix build .#ghc94-transitive-anns -Lv --fallback --accept-flake-config | |
- run: nix build .#ghc92-transitive-anns -Lv --fallback --accept-flake-config |