fix flake update

This commit is contained in:
Jörg Thalheim 2024-05-09 15:11:30 +02:00
parent 109caf8e80
commit e6cb2a2a72
2 changed files with 3 additions and 3 deletions

View file

@ -13,7 +13,7 @@ jobs:
os: [ ubuntu-latest ]
# FIXME macos garbage currently collect also nix-shell that runs the test
#os: [ ubuntu-latest, macos-latest ]
variants: [ stable, unstable, bash4 ]
variants: [ stable, latest, bash4 ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4

View file

@ -37,8 +37,8 @@
test-runner-stable = pkgs.callPackage ./test-runner.nix {
nixVersion = "stable";
};
test-runner-unstable = pkgs.callPackage ./test-runner.nix {
nixVersion = "unstable";
test-runner-latest = pkgs.callPackage ./test-runner.nix {
nixVersion = "latest";
};
};