Skip to content

Commit 3164f50

Browse files
committed
ci: add integration testing via Nix
1 parent f8b4139 commit 3164f50

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/integration.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: "Run integration tests"
2+
on:
3+
pull_request:
4+
push:
5+
jobs:
6+
tests:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v3
10+
- uses: cachix/install-nix-action@v20
11+
with:
12+
nix_path: nixpkgs=channel:nixos-unstable
13+
extra_nix_config: "system-features = nixos-test benchmark big-parallel kvm"
14+
- uses: DeterminateSystems/magic-nix-cache-action@v2
15+
- run: nix flake check -L

0 commit comments

Comments
 (0)