build(deps): bump nixpkgs from 331800d to b5aa0fb
#119
Workflow file for this run
This file contains hidden or 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 | |
| on: | |
| push: | |
| paths: | |
| - '**.nix' | |
| - flake.lock | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| nix-flake: | |
| name: Nix flake | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Clone repository | |
| uses: actions/checkout@v6 | |
| - name: Install Nix | |
| uses: DeterminateSystems/nix-installer-action@v22 | |
| with: | |
| extra-conf: | | |
| log-lines = 500 | |
| - name: Set up Magic Nix Cache | |
| uses: DeterminateSystems/magic-nix-cache-action@v14 | |
| - name: Check Nix flake inputs | |
| uses: DeterminateSystems/flake-checker-action@v12 | |
| with: | |
| fail-mode: true | |
| check-outdated: false | |
| - name: Check Nix flake outputs | |
| run: nix flake check -v --all-systems |