Skip to content

Commit 0d460ff

Browse files
authored
Merge pull request #1 from clalarco/issue-17-fix-workflows
Using different macos versions for python older and newer than 3.11
2 parents ffe24b3 + 99fbd89 commit 0d460ff

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

.github/workflows/all-lints.yml

+13-1
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,20 @@ jobs:
88
runs-on: ${{ matrix.os }}
99
strategy:
1010
matrix:
11-
os: [ubuntu-latest, macos-latest, windows-latest]
11+
os: [ubuntu-latest, macos-13, macos-latest, windows-latest]
1212
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
13+
exclude:
14+
- os: macos-latest
15+
python-version: 3.8
16+
- os: macos-latest
17+
python-version: 3.9
18+
- os: macos-latest
19+
python-version: 3.10
20+
- os: macos-13
21+
python-version: 3.11
22+
- os: macos-13
23+
python-version: 3.12
24+
1325
steps:
1426
- uses: actions/checkout@v4
1527
- uses: marian-code/python-lint-annotate@master

0 commit comments

Comments
 (0)