Skip to content

Commit 0373743

Browse files
committed
Update
1 parent a4b25ca commit 0373743

File tree

1 file changed

+13
-11
lines changed

1 file changed

+13
-11
lines changed

.github/workflows/test-python.yml

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,15 @@ jobs:
1111
name: Python ${{ matrix.os }}
1212
runs-on: ${{ matrix.os }}
1313
strategy:
14-
include:
15-
- os: macos-latest
16-
python: 3.11
17-
- os: linux-latest
18-
python: 3.11
19-
- os: windows-2022
20-
python: 3.12
14+
fail-fast: false
15+
matrix:
16+
include:
17+
- os: macos-latest
18+
python: 3.11
19+
- os: ubuntu-latest
20+
python: 3.11
21+
- os: windows-2022
22+
python: 3.12
2123
steps:
2224
- uses: actions/checkout@v4
2325
- uses: actions/setup-python@v5
@@ -28,7 +30,7 @@ jobs:
2830
python3 -m pip install .
2931
pytest -v
3032
- run: |
31-
python3 ./examples/call_highs_from_python_highspy.py
32-
python3 ./examples/call_highs_from_python_mps.py
33-
python3 ./examples/call_highs_from_python.py
34-
python3 ./examples/minimal.py
33+
python3 ./examples/call_highs_from_python_highspy.py
34+
python3 ./examples/call_highs_from_python_mps.py
35+
python3 ./examples/call_highs_from_python.py
36+
python3 ./examples/minimal.py

0 commit comments

Comments
 (0)