1 parent ea679b3 commit 16d1996Copy full SHA for 16d1996
1 file changed
.github/workflows/nix.yml
@@ -0,0 +1,20 @@
1
+name: Build nix
2
+
3
+on:
4
+ pull_request:
5
+ push:
6
+ branches: [main]
7
8
+jobs:
9
+ validate:
10
+ runs-on: ubuntu-latest
11
+ permissions:
12
+ contents: read
13
+ env:
14
+ HAS_DEPLOY_KEY: ${{ secrets.SKILL_EVAL_DEPLOY_KEY != '' }}
15
+ steps:
16
+ - uses: actions/checkout@v4
17
+ - uses: DeterminateSystems/nix-installer-action@v17
18
+ - uses: DeterminateSystems/magic-nix-cache-action@v8
19
+ - name: Ensure build
20
+ run: nix build .
0 commit comments