Skip to content

Commit

Permalink
ci: disable matrix fail fast (#434)
Browse files Browse the repository at this point in the history
  • Loading branch information
Guts authored Feb 23, 2024
2 parents d000f84 + 83e3215 commit f01ff91
Showing 1 changed file with 24 additions and 6 deletions.
30 changes: 24 additions & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,15 @@ name: "🎳 Tester"

on:
push:
branches: [main]
branches:
- main
paths:
- "**/*.py"
- ".github/workflows/tests.yml"

pull_request:
branches: [main]
branches:
- main
paths:
- "**/*.py"
- ".github/workflows/tests.yml"
Expand All @@ -22,9 +24,17 @@ env:
jobs:
unit-test:
strategy:
fail-fast: false
# max-parallel: 4
matrix:
os: [macos-latest, ubuntu-22.04, windows-latest]
python-version: ["3.10", "3.11", "3.12"]
os:
- macos-latest
- ubuntu-22.04
- windows-latest
python-version:
- "3.10"
- "3.11"
- "3.12"

runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -66,9 +76,17 @@ jobs:

integration-test:
strategy:
fail-fast: false
# max-parallel: 4
matrix:
os: [macos-latest, ubuntu-22.04, windows-latest]
python-version: ["3.10", "3.11", "3.12"]
os:
- macos-latest
- ubuntu-22.04
- windows-latest
python-version:
- "3.10"
- "3.11"
- "3.12"

runs-on: ${{ matrix.os }}
steps:
Expand Down

0 comments on commit f01ff91

Please sign in to comment.