We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72bf1c3 commit 4e5652aCopy full SHA for 4e5652a
.github/workflows/python-testing.yml
@@ -68,9 +68,10 @@ jobs:
68
69
tests:
70
needs: check
71
- runs-on: ubuntu-latest
+ runs-on: ${{ matrix.os }}
72
strategy:
73
max-parallel: 5
74
+ fail-fast: true
75
matrix:
76
python-version: ["3.7",
77
"3.8",
@@ -79,10 +80,11 @@ jobs:
79
80
"3.11",
81
# "3.12-dev"
82
]
83
+ os: [ubuntu-latest, "macos-latest"]
84
85
steps:
86
- uses: actions/checkout@v3
- - name: Set up Python ${{ matrix.python-version }}
87
+ - name: Set up Python ${{ matrix.python-version }} for ${{ matrix.os }}
88
uses: actions/setup-python@v4
89
with:
90
python-version: ${{ matrix.python-version }}
0 commit comments