chore(deps): bump nixpkgs from 24.05 to 24.11 #35
Workflow file for this run
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 Codebase" | |
on: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
check: | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: "Checkout Codebase" | |
uses: "actions/checkout@v4" | |
- name: "Install Nix" | |
uses: "cachix/install-nix-action@v27" | |
with: | |
nix_path: "nixpkgs=channel:nixos-24.05" | |
- 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" |