Skip to content

Commit

Permalink
fix(actions): fallback to macos-13 in test suite for python 3.8 & 3.9 (
Browse files Browse the repository at this point in the history
…#2437)

* remove macos from test suit

Signed-off-by: Lala Sabathil <[email protected]>

* Update test.yml

Signed-off-by: Lala Sabathil <[email protected]>

* ci: use macos-latest but revert to osx13 on some

Signed-off-by: BobDotCom <[email protected]>

* style(pre-commit): auto fixes from pre-commit.com hooks

---------

Signed-off-by: Lala Sabathil <[email protected]>
Signed-off-by: BobDotCom <[email protected]>
Co-authored-by: BobDotCom <[email protected]>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
  • Loading branch information
3 people authored Apr 25, 2024
1 parent f5683c5 commit fe0a5f4
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,15 @@ jobs:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
# Python 3.8/3.9 are on macos-13 but not macos-latest (macos-14-arm64)
# https://github.com/actions/setup-python/issues/696#issuecomment-1637587760
exclude:
- { python-version: "3.8", os: "macos-latest" }
- { python-version: "3.9", os: "macos-latest" }
include:
- { python-version: "3.8", os: "macos-13" }
- { python-version: "3.9", os: "macos-13" }

env:
OS: ${{ matrix.os }}
PYTHON: ${{ matrix.python-version }}
Expand Down

0 comments on commit fe0a5f4

Please sign in to comment.