Skip to content

Commit 62466c3

Browse files
ci: Test only latest Python runtime on MacOS (#1203)
* Exclude Python 3.6 and Python 3.7 from the testing matrix for macos-latest - Speed up CI significantly while still testing the latest Python runtime on macos-latest * Add testing of Python 3.6 to current release tests * c.f. https://docs.github.com/en/free-pro-team@latest/actions/reference/workflow-syntax-for-github-actions#example-excluding-configurations-from-a-matrix
1 parent 2d1b8ef commit 62466c3

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,11 @@ jobs:
1616
matrix:
1717
os: [ubuntu-latest, macos-latest]
1818
python-version: [3.6, 3.7, 3.8]
19+
exclude:
20+
- os: macos-latest
21+
python-version: 3.6
22+
- os: macos-latest
23+
python-version: 3.7
1924

2025
steps:
2126
- uses: actions/checkout@v2

.github/workflows/release_tests.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,12 @@ jobs:
1515
strategy:
1616
matrix:
1717
os: [ubuntu-latest, macos-latest]
18-
python-version: [3.7, 3.8]
18+
python-version: [3.6, 3.7, 3.8]
19+
exclude:
20+
- os: macos-latest
21+
python-version: 3.6
22+
- os: macos-latest
23+
python-version: 3.7
1924

2025
steps:
2126
- uses: actions/checkout@v2

0 commit comments

Comments
 (0)