Skip to content

Commit

Permalink
chore(test): fix GitHub check action due to nixpkgs 24.11 upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
vst committed Dec 6, 2024
1 parent 55849fa commit 35f9d2d
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,19 @@ jobs:
- name: "Checkout Codebase"
uses: "actions/checkout@v4"

- name: "Install nix"
- name: "Install Nix"
uses: "cachix/install-nix-action@v27"
with:
nix_path: "nixpkgs=channel:nixos-24.05"

- name: "Use magic Nix cache"
- name: "Use Magic Nix Cache"
uses: "DeterminateSystems/magic-nix-cache-action@v7"

## TODO: This should not be necessary, but nixpkgs v24.11 requires it.
- name: "Update Haskell Package List"
run: |
nix-shell --run "cabal update --ignore-project"
- name: "Check Application"
run: |
nix-shell --pure --run "dev-test-build"
nix-shell --run "dev-test-build"

0 comments on commit 35f9d2d

Please sign in to comment.