We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 98449cc commit c8949ffCopy full SHA for c8949ff
.github/workflows/nix.yml
@@ -0,0 +1,30 @@
1
+name: Nix
2
+
3
+on:
4
+ workflow_dispatch:
5
+ push:
6
+ paths:
7
+ - flake.nix
8
+ - .github/workflows/nix.yml
9
10
+jobs:
11
+ develop:
12
+ name: Develop (${{ matrix.name }})
13
+ strategy:
14
+ matrix:
15
+ include:
16
+ - name: Linux
17
+ runner: ubuntu-latest
18
+ - name: MacOS
19
+ runner: macos-latest
20
+ fail-fast: false
21
+ runs-on: ${{ matrix.runner }}
22
+ steps:
23
+ - name: Install nix
24
+ uses: cachix/install-nix-action@v27
25
26
+ - name: Checkout
27
+ uses: actions/checkout@v4
28
29
+ - name: Nix develop
30
+ run: nix develop --accept-flake-config --command echo "Nix environment setup successfully"
0 commit comments