Skip to content

Commit f83fccb

Browse files
authored
Merge pull request #41 from uutils/sylvestre-patch-1
Disable the fail fast (closes: #40)
2 parents b135b6f + 76c4714 commit f83fccb

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/ci.yml

+4
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ jobs:
1010
name: cargo check
1111
runs-on: ${{ matrix.os }}
1212
strategy:
13+
fail-fast: false
1314
matrix:
1415
os: [ubuntu-latest, macOS-latest, windows-latest]
1516
steps:
@@ -21,6 +22,7 @@ jobs:
2122
name: cargo test
2223
runs-on: ${{ matrix.os }}
2324
strategy:
25+
fail-fast: false
2426
matrix:
2527
os: [ubuntu-latest, macOS-latest, windows-latest]
2628
steps:
@@ -41,6 +43,7 @@ jobs:
4143
name: cargo clippy -- -D warnings
4244
runs-on: ${{ matrix.os }}
4345
strategy:
46+
fail-fast: false
4447
matrix:
4548
os: [ubuntu-latest, macOS-latest, windows-latest]
4649
steps:
@@ -70,6 +73,7 @@ jobs:
7073
name: Code Coverage
7174
runs-on: ${{ matrix.job.os }}
7275
strategy:
76+
fail-fast: false
7377
matrix:
7478
job:
7579
- { os: ubuntu-latest , features: unix }

0 commit comments

Comments
 (0)