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 de4e3be commit 71817f4Copy full SHA for 71817f4
.github/workflows/nix.yml
@@ -0,0 +1,20 @@
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
+ with:
16
+ extra-conf: |
17
+ trusted-substituters = https://gepetto.cachix.org
18
+ trusted-public-keys = gepetto.cachix.org-1:toswMl31VewC0jGkN6+gOelO2Yom0SOHzPwJMY2XiDY=
19
+ - uses: DeterminateSystems/magic-nix-cache-action@main
20
+ - run: nix build --accept-flake-config
0 commit comments