GitHub workflow: don't 'fail fast', i.e. run the rest of the matrix when part fails

This commit is contained in:
Klaas van Schelven
2025-03-13 09:16:54 +01:00
parent 651ed1d8c5
commit 4d26252357

View File

@@ -37,6 +37,7 @@ jobs:
test: test:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:
fail-fast: false
matrix: matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
db: [sqlite, mysql, postgres] db: [sqlite, mysql, postgres]