Skip to content

Commit 892d36f

Browse files
committed
Move macos-13 runners to macos-15-intel
1 parent 8226778 commit 892d36f

2 files changed

Lines changed: 12 additions & 14 deletions

File tree

.github/workflows/ci.yml

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333

3434
defaults:
3535
run:
36-
shell: bash -l {0}
36+
shell: bash -el {0}
3737

3838
steps:
3939
- name: Checkout repository
@@ -44,16 +44,14 @@ jobs:
4444
with:
4545
python-version: ${{ matrix.python-version }}
4646

47-
- name: Spell check
48-
run: |
49-
pip install codespell
50-
codespell --config .github/linters/.codespellrc
47+
- name: Install nox
48+
run: pip install nox
5149

5250
- name: Code format
53-
run: |
54-
pip install flake8
55-
flake8 --config .github/linters/.flake8 src
56-
flake8 --config .github/linters/.flake8 tests
51+
run: nox -s linter
52+
53+
- name: Spell check
54+
run: nox -s codespell
5755

5856
test:
5957
name: (Test ${{ matrix.python-version }}, ${{ matrix.os }})
@@ -62,12 +60,12 @@ jobs:
6260
strategy:
6361
fail-fast: false
6462
matrix:
65-
os: [macos-13, macos-latest, windows-latest, ubuntu-latest]
63+
os: [macos-15-intel, macos-latest, windows-latest, ubuntu-latest]
6664
python-version: ["3.9", "3.13"]
6765

6866
defaults:
6967
run:
70-
shell: bash -l {0}
68+
shell: bash -el {0}
7169

7270
steps:
7371
- name: Checkout repository

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,12 +81,12 @@ jobs:
8181
strategy:
8282
fail-fast: true
8383
matrix:
84-
os: [macos-13, macos-latest, windows-latest, ubuntu-latest]
84+
os: [macos-15-intel, macos-latest, windows-latest, ubuntu-latest]
8585
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
8686

8787
defaults:
8888
run:
89-
shell: bash -l {0}
89+
shell: bash -el {0}
9090

9191
steps:
9292
- name: Checkout repository
@@ -182,7 +182,7 @@ jobs:
182182

183183
defaults:
184184
run:
185-
shell: bash -l {0}
185+
shell: bash -el {0}
186186

187187
steps:
188188
- name: Checkout repository

0 commit comments

Comments
 (0)