Explicitly specify status for temp sessions, since that suddenly brok… #1786
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: Nix build | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| build-nix: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: cachix/install-nix-action@v31 | |
| with: | |
| nix_path: nixpkgs=channel:nixos-unstable | |
| #- uses: DeterminateSystems/magic-nix-cache-action@v13 | |
| - run: nix build -L -j auto | |
| - run: nix develop --command echo OK | |
| - run: nix flake check -vL -j auto |