Skip to content

Commit a3e27d2

Browse files
authored
test macos-latest (#289)
* add macos-latest to CI tests * drop macos-13 which is [not supported anymore](https://github.blog/changelog/2025-09-19-github-actions-macos-13-runner-image-is-closing-down/)
1 parent 2a7e62a commit a3e27d2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/check-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ jobs:
1818
runs-on: ${{ matrix.os }}
1919
strategy:
2020
matrix:
21-
os: [ubuntu-latest, macos-13, macos-14, windows-latest]
21+
os: [ubuntu-latest, macos-latest, windows-latest]
2222
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
2323
steps:
2424
- uses: actions/checkout@v4
2525
- name: Setup Python ${{ matrix.python-version }}
2626
uses: actions/setup-python@v5
2727
with:
2828
python-version: ${{ matrix.python-version }}
29-
- if: ${{ matrix.os == 'macos-13' || matrix.os == 'macos-14' }}
29+
- if: ${{ matrix.os == 'macos-latest' || matrix.os == 'macos-14' }}
3030
name: Install Mac OS requirements
3131
run: brew install bash
3232
- if: matrix.os == 'windows-latest'

0 commit comments

Comments
 (0)