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 7322a67
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 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 --pure --run "cabal update"
- name: "Check Application"
run: |
nix-shell --pure --run "dev-test-build"

0 comments on commit 7322a67

Please sign in to comment.