this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

ci(nix): add Nix action

+24 -1
+22
.github/workflows/nix.yml
··· 1 + name: Nix 2 + 3 + on: 4 + push: 5 + branches: ["main"] 6 + pull_request: 7 + branches: ["main"] 8 + 9 + jobs: 10 + build: 11 + runs-on: ubuntu-latest 12 + 13 + steps: 14 + - uses: actions/checkout@v3 15 + - uses: DeterminateSystems/nix-installer-action@main 16 + - uses: DeterminateSystems/magic-nix-cache-action@main 17 + 18 + - name: Check 19 + run: nix flake check 20 + 21 + - name: Build 22 + run: nix build
+2 -1
flake.nix
··· 77 77 #clippy.enable = true; 78 78 79 79 # Runs `cargo check` to look for errors 80 - cargo-check.enable = true; 80 + # FIXME: Re-enable. Fails due to network errors in the sandbox. 81 + #cargo-check.enable = true; 81 82 82 83 # Format nix files using nixfmt 83 84 # This hook will format the files for you, so on a failure all