Skip to content

Commit

Permalink
ci: Fail builds faster
Browse files Browse the repository at this point in the history
  • Loading branch information
rickynils committed Nov 1, 2022
1 parent a473bce commit 7092102
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,14 @@ on:
branches:
- master

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
build:
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest, macos-10.15]
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -36,6 +41,7 @@ jobs:
test-nix:
needs: build
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest, macos-10.15]
nix_version:
Expand Down Expand Up @@ -78,6 +84,7 @@ jobs:
test-cachix:
needs: build
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest, macos-10.15]
nix_version:
Expand Down

0 comments on commit 7092102

Please sign in to comment.