We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9658ef4 commit ff86293Copy full SHA for ff86293
.github/workflows/nix.yml
@@ -0,0 +1,19 @@
1
+name: "Nix CI"
2
+
3
+on: [pull_request, push]
4
5
+jobs:
6
+ tests:
7
+ name: "Nix build on ${{ matrix.os }}"
8
+ runs-on: "${{ matrix.os }}-latest"
9
+ strategy:
10
+ matrix:
11
+ os: [ubuntu]
12
+ steps:
13
+ - uses: actions/checkout@v4
14
+ - uses: DeterminateSystems/nix-installer-action@main
15
+ - uses: DeterminateSystems/magic-nix-cache-action@main
16
+ - run: nix --accept-flake-config build -L
17
+ - run: nix --accept-flake-config run .#cachix push gepetto $(readlink result)
18
+ env:
19
+ CACHIX_AUTH_TOKEN: ${{ secrets.CACHIX_AUTH_TOKEN }}
0 commit comments