Skip to content

Commit b169caa

Browse files
committed
Show Python version in CI
1 parent 8c4901d commit b169caa

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,18 +43,21 @@ jobs:
4343
timeout-minutes: 15
4444
if: ${{ !startsWith( matrix.python-version, 'pypy' ) && !startsWith(matrix.os, 'windows') }}
4545
run: |
46+
hatch run test:python --version
4647
hatch run cov:test --cov-fail-under 50 || hatch run test:test --lf
4748
4849
- name: Run the tests on pypy
4950
timeout-minutes: 15
5051
if: ${{ startsWith( matrix.python-version, 'pypy' ) }}
5152
run: |
53+
hatch run test:python --version
5254
hatch run test:nowarn || hatch run test:nowarn --lf
5355
5456
- name: Run the tests on Windows
5557
timeout-minutes: 15
5658
if: ${{ startsWith(matrix.os, 'windows') }}
5759
run: |
60+
hatch run test:python --version
5861
hatch run cov:nowarn || hatch run test:nowarn --lf
5962
6063
- name: Check Launcher

0 commit comments

Comments
 (0)