Skip to content

chore(deps): bump nixpkgs from 24.05 to 24.11 #35

chore(deps): bump nixpkgs from 24.05 to 24.11

chore(deps): bump nixpkgs from 24.05 to 24.11 #35

Workflow file for this run

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"