Skip to content

Commit 20142a1

Browse files
ci: Run tests on all Python versions even if one fails (#390)
1 parent 29f3856 commit 20142a1

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/ci_workflow.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,14 @@ jobs:
1212
tests:
1313
runs-on: ubuntu-latest
1414
strategy:
15+
fail-fast: false
1516
matrix:
16-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
17+
python-version:
18+
- "3.12"
19+
- "3.11"
20+
- "3.10"
21+
- "3.9"
22+
- "3.8"
1723
steps:
1824
- uses: actions/checkout@v4
1925
- name: Fix key permissions

0 commit comments

Comments
 (0)