Skip to content

Commit 0ba8371

Browse files
author
Fabien Coelho
committed
fix non special env target
1 parent a1a2973 commit 0ba8371

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/ppp.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,19 +26,19 @@ jobs:
2626
cover: 100.0
2727
- version: "3.13t"
2828
cover: 100.0
29-
env: PYTHON_GIL=0
29+
gil: 0
3030
- version: "3.13t"
3131
cover: 100.0
32-
env: PYTHON_GIL=1
32+
gil: 1
3333
# 3.14 including nogil
3434
- version: "3.14"
3535
cover: 100.0
3636
- version: "3.14t"
3737
cover: 96.5 # FIXME 3.14t coverage issue?!
38-
env: PYTHON_GIL=0
38+
gil: 0
3939
- version: "3.14t"
4040
cover: 96.5 # FIXME 3.14t coverage issue?
41-
env: PYTHON_GIL=1
41+
gil: 1
4242
steps:
4343
# Setup
4444
- uses: actions/checkout@v4
@@ -63,8 +63,8 @@ jobs:
6363
- name: Check with ruff
6464
run: make check.ruff
6565
- name: Check with pytest
66-
run: make check.pytest
66+
run: PYTHON_GIL=${{ matrix.python.gil }} make check.pytest
6767
- name: Check with coverage
68-
run: make COVER=${{ matrix.python.cover }} check.coverage
68+
run: PYTHON_GIL=${{ matrix.python.gil }} make COVER=${{ matrix.python.cover }} check.coverage
6969
- name: Check with pymarkdown
7070
run: make check.pymarkdown

0 commit comments

Comments
 (0)