Skip to content

Commit ad5e93b

Browse files
committed
ci: don't fail fast
1 parent d92d0a4 commit ad5e93b

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77
jobs:
88
poetry-with-codecov:
99
strategy:
10+
fail-fast: false
1011
matrix:
1112
python-version:
1213
- "3.10"
@@ -16,4 +17,4 @@ jobs:
1617
working-directory: .
1718
python-version: ${{ matrix.python-version }}
1819
module-name: safeds
19-
coverage: ${{ matrix.python-version == '3.10' }}
20+
coverage: ${{ matrix.python-version == "3.10" }}

.github/workflows/pr.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ concurrency:
1111
jobs:
1212
poetry-with-codecov:
1313
strategy:
14+
fail-fast: false
1415
matrix:
1516
python-version:
1617
- "3.10"
@@ -20,4 +21,4 @@ jobs:
2021
working-directory: .
2122
python-version: ${{ matrix.python-version }}
2223
module-name: safeds
23-
coverage: ${{ matrix.python-version == '3.10' }}
24+
coverage: ${{ matrix.python-version == "3.10" }}

0 commit comments

Comments
 (0)