Skip to content

Commit 79617f0

Browse files
committed
tests: test nix develop
1 parent a1aaa37 commit 79617f0

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/test.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,20 @@ jobs:
2424
npm install
2525
- run: |
2626
npm run all
27+
test-nix-develop:
28+
runs-on: ubuntu-latest
29+
steps:
30+
- uses: actions/checkout@v4
31+
- name: Install Nix
32+
uses: cachix/install-nix-action@v29
33+
with:
34+
extra_nix_config: |
35+
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
36+
- name: Test Nix Develop
37+
run: |
38+
figlet "Should fail"
39+
nix develop
40+
figlet "Should pass"
2741
test-latest-nix:
2842
runs-on: ubuntu-latest
2943
steps:

0 commit comments

Comments
 (0)