Skip to content

Commit 0b3ec46

Browse files
authored
Update build.yml
1 parent c1b9b79 commit 0b3ec46

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,14 @@ on: [push, pull_request]
44

55
jobs:
66
test_python:
7-
runs-on: ${{matrix.os}}
7+
runs-on: ${{ matrix.os }}
88
strategy:
99
matrix:
1010
os: [ubuntu-latest, windows-latest, macos-latest]
1111
python-version: ["3.7", "3.8", "3.9", "3.10"]
12+
exclude:
13+
- os: macos-latest
14+
python-version: "3.7"
1215
steps:
1316
- uses: actions/checkout@v3
1417
- uses: actions/setup-python@v4
@@ -25,7 +28,7 @@ jobs:
2528
python -m unittest discover -v --start-directory tests/python --pattern "bindings_test*.py"
2629
2730
test_cpp:
28-
runs-on: ${{matrix.os}}
31+
runs-on: ${{ matrix.os }}
2932
strategy:
3033
matrix:
3134
os: [ubuntu-latest, windows-latest, macos-latest]

0 commit comments

Comments
 (0)