We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1b9b79 commit 0b3ec46Copy full SHA for 0b3ec46
.github/workflows/build.yml
@@ -4,11 +4,14 @@ on: [push, pull_request]
4
5
jobs:
6
test_python:
7
- runs-on: ${{matrix.os}}
+ runs-on: ${{ matrix.os }}
8
strategy:
9
matrix:
10
os: [ubuntu-latest, windows-latest, macos-latest]
11
python-version: ["3.7", "3.8", "3.9", "3.10"]
12
+ exclude:
13
+ - os: macos-latest
14
+ python-version: "3.7"
15
steps:
16
- uses: actions/checkout@v3
17
- uses: actions/setup-python@v4
@@ -25,7 +28,7 @@ jobs:
25
28
python -m unittest discover -v --start-directory tests/python --pattern "bindings_test*.py"
26
29
27
30
test_cpp:
31
32
33
34
0 commit comments