We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76c7b8a commit 9467aa0Copy full SHA for 9467aa0
.github/workflows/test.yml
@@ -6,10 +6,10 @@ jobs:
6
tests:
7
runs-on: ubuntu-latest
8
steps:
9
- - uses: actions/checkout@v2.4.0
10
- - uses: cachix/install-nix-action@v15
11
- with:
12
- extra_nix_config: |
13
- access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
14
- - run: nix build
15
- - run: nix flake check
+ - uses: actions/checkout@v3
+ - name: Install Nix
+ uses: DeterminateSystems/nix-installer-action@v4
+ - name: Magic Nix Cache
+ uses: DeterminateSystems/magic-nix-cache-action@v1
+ - name: Test flake output
+ run: nix flake check
0 commit comments