Skip to content

Commit

Permalink
ci: split stable and unstable tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sandydoo committed Dec 31, 2024
1 parent 76a4362 commit 0070c0b
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,22 @@ jobs:
- name: Check nixpkgs-unstable
run: nix flake check -L --show-trace

- run: nix eval .#lib.x86_64-linux.run --show-trace

tests-flakes-stable:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v30
- uses: cachix/cachix-action@v15
with:
name: pre-commit-hooks
signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}'
- run: rm -rf /opt&

- name: Check nixpkgs-stable
run: nix flake check -L --show-trace --override-input nixpkgs github:NixOS/nixpkgs/nixos-24.11

- run: nix eval .#lib.x86_64-linux.run --show-trace

0 comments on commit 0070c0b

Please sign in to comment.