ci: build as much as possible
By default GitHub Actions cancels all the jobs in the build matrix if any one of them fails. We actually want to keep going to get some advancement on the other channels.
This commit is contained in:
parent
887722a603
commit
0929c8c531
1 changed files with 2 additions and 0 deletions
2
.github/workflows/nix.yml
vendored
2
.github/workflows/nix.yml
vendored
|
@ -11,6 +11,8 @@ on:
|
|||
jobs:
|
||||
build:
|
||||
strategy:
|
||||
# Keep building the other channels if one fails
|
||||
fail-fast: false
|
||||
matrix:
|
||||
channel:
|
||||
- nixos-unstable
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue