Skip to content

Commit fc18198

Browse files
committed
build: exclude faulty images from build matrix
1 parent 1c5eef9 commit fc18198

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

.github/workflows/python.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,17 @@ jobs:
1313
matrix:
1414
os: [ubuntu-latest, macos-latest, windows-latest]
1515
python-version: ['3.8', 'pypy3.8', '3.9', 'pypy3.9', '3.10', '3.11']
16+
exclude:
17+
- os: macos-latest
18+
python-version: '3.8'
19+
- os: macos-latest
20+
python-version: 'pypy3.8'
21+
- os: macos-latest
22+
python-version: '3.9'
23+
- os: macos-latest
24+
python-version: 'pypy3.9'
25+
- os: macos-latest
26+
python-version: '3.10'
1627

1728
steps:
1829
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)