We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12f994d commit 3bacfabCopy full SHA for 3bacfab
.github/workflows/ci.yml
@@ -26,11 +26,13 @@ jobs:
26
run: make test
27
28
nix-tests:
29
- name: NixOS tests
30
runs-on: ubuntu-latest
31
- container:
32
- image: nixos/nix:latest
33
steps:
34
- uses: actions/checkout@v4
35
- - name: Run tests in Nix shell
36
- run: nix develop --command python -m unittest discover -v
+ - uses: cachix/install-nix-action@v27
+ with:
+ nix_path: nixpkgs=channel:nixos-24.05
+ extra_nix_config: |
+ experimental-features = nix-command flakes
37
+ - name: Run tests via Nix
38
+ run: nix develop --command make test
0 commit comments