These workflows triggered on both push and pull_request with no branch filter, so every push to a PR branch ran each workflow twice. Restrict the push trigger to master; pull_request already covers PR branches.
22 lines
624 B
YAML
22 lines
624 B
YAML
name: "Nix-Tests"
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches: [master]
|
|
concurrency:
|
|
group: ${{ github.workflow }}-nix-${{ github.event.pull_request.number || github.ref }}
|
|
cancel-in-progress: true
|
|
jobs:
|
|
nix-flake-check:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
- uses: cachix/install-nix-action@v31
|
|
with:
|
|
extra_nix_config: |
|
|
experimental-features = nix-command flakes
|
|
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
|
|
- run: nix flake show
|
|
- run: nix flake check --print-build-logs
|
|
- run: nix build --print-build-logs
|