Skip to content

Commit 6c5859e

Browse files
committed
trying a conditional again.
1 parent 7d1cd5f commit 6c5859e

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/unittest.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ name: unittest
66
jobs:
77
unit:
88
# Use `ubuntu-22.04` runner.
9-
runs-on: ubuntu-22.04
9+
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
1212
python: ['3.9', '3.11', '3.12', '3.13', '3.14']
@@ -22,6 +22,7 @@ jobs:
2222
python -m pip install --upgrade setuptools pip wheel
2323
python -m pip install nox
2424
- name: Run unit tests
25+
if: matrix.python != '3.14'
2526
env:
2627
COVERAGE_FILE: .coverage-${{ matrix.python }}
2728
run: |
@@ -38,7 +39,7 @@ jobs:
3839
runs-on: ubuntu-latest
3940
strategy:
4041
matrix:
41-
python: ['3.9', '3.13']
42+
python: ['3.9', '3.14']
4243
steps:
4344
- name: Checkout
4445
uses: actions/checkout@v4

0 commit comments

Comments
 (0)