Skip to content

Commit 3b18ae6

Browse files
committed
ci: add github action for nix verification
1 parent 8f44723 commit 3b18ae6

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/test.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,3 +147,15 @@ jobs:
147147
148148
- name: Run integration tests
149149
run: bb integration-test
150+
151+
nix-build:
152+
needs: unit-test
153+
runs-on: ubuntu-latest
154+
steps:
155+
- uses: actions/checkout@v5
156+
- uses: cachix/install-nix-action@v31
157+
- run: nix develop --command deps-lock-update
158+
- run: |
159+
echo "checking if deps-lock.json is up to date"
160+
git diff --exit-code
161+
- run: nix build

0 commit comments

Comments
 (0)