Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 39774df

Browse filesBrowse files
authored
Merge pull request #417 from tomschr/gha-test-matrix
GHA: Use matrix to test MacOS too
2 parents 72bf1c3 + ca1fcd9 commit 39774df
Copy full SHA for 39774df

File tree

2 files changed

+5
-2
lines changed
Filter options

2 files changed

+5
-2
lines changed

‎.github/workflows/python-testing.yml

Copy file name to clipboardExpand all lines: .github/workflows/python-testing.yml
+4-2Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,10 @@ jobs:
6868
6969
tests:
7070
needs: check
71-
runs-on: ubuntu-latest
71+
runs-on: ${{ matrix.os }}
7272
strategy:
7373
max-parallel: 5
74+
fail-fast: true
7475
matrix:
7576
python-version: ["3.7",
7677
"3.8",
@@ -79,10 +80,11 @@ jobs:
7980
"3.11",
8081
# "3.12-dev"
8182
]
83+
os: [ubuntu-latest, "macos-latest"]
8284

8385
steps:
8486
- uses: actions/checkout@v3
85-
- name: Set up Python ${{ matrix.python-version }}
87+
- name: Set up Python ${{ matrix.python-version }} for ${{ matrix.os }}
8688
uses: actions/setup-python@v4
8789
with:
8890
python-version: ${{ matrix.python-version }}

‎changelog.d/pr417.feature.rst

Copy file name to clipboard
+1Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Amend GitHub Actions to check against MacOS.

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.