Skip to content

Commit 92d2e7f

Browse files
committed
Debugging actions workflow
1 parent d987a37 commit 92d2e7f

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
runs-on: ubuntu-latest
77
if: github.event.pull_request.draft == false
88
env:
9-
python_latest = 3.14
9+
python-latest: 3.14
1010
strategy:
1111
matrix:
1212
python-version: ['3.10', 3.11, 3.12, 3.13, 3.14]
@@ -28,12 +28,12 @@ jobs:
2828
- name: Check code style with flake8
2929
run: |
3030
python -m flake8 pcpostprocess/*.py tests/*.py pcpostprocess/scripts/*.py
31-
if: matrix.python-version == ${{ python_latest }}
31+
if: matrix.python-version == ${{ env.python-latest }}
3232

3333
- name: Check import ordering with isort
3434
run: |
3535
python -m isort --verbose --check-only --diff pcpostprocess tests setup.py
36-
if: matrix.python-version == ${{ python_latest }}
36+
if: matrix.python-version == ${{ env.python-latest }}
3737

3838
- name: Extract test data
3939
run: |
@@ -56,5 +56,5 @@ jobs:
5656
pcpostprocess run_herg_qc tests/test_data/13112023_MW2_FF -w A01 A02 A03
5757
5858
- uses: codecov/codecov-action@v4
59-
if: success() && matrix.python-version == ${{ python_latest }}
59+
if: success() && matrix.python-version == ${{ env.python-latest }}
6060

0 commit comments

Comments
 (0)