Skip to content

ci: macos-latest now points at macos-14 #774

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
ci: macos-latest now points at macos-14
  • Loading branch information
henryiii authored Apr 24, 2024
commit 20aa0259554bd26a13b3c47e5a0a3d17027b2484
17 changes: 12 additions & 5 deletions .github/workflows/reusable-pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ jobs:
fail-fast: false
matrix:
os:
- ubuntu
- macos
- windows
- ubuntu-latest
- macos-13
- windows-latest
py:
- "pypy-3.8"
- "pypy-3.9"
Expand All @@ -26,12 +26,19 @@ jobs:
tox-target:
- "tox"
- "min"
include:
- os: macos-14
py: "3.10"
tox-target: "tox"
- os: macos-14
py: "3.12"
tox-target: "tox"

continue-on-error: >- # jobs not required in branch protection
${{
(
startsWith(matrix.py, 'pypy-')
&& matrix.os == 'windows'
&& matrix.os == 'windows-latest'
)
&& true
|| false
Expand Down Expand Up @@ -67,7 +74,7 @@ jobs:
- name: Setup python for tox
uses: actions/setup-python@v5
with:
python-version: 3.9
python-version: 3.10

- name: Install tox
run: python -m pip install tox
Expand Down