Skip to content

Commit 6c347df

Browse files
author
Fabien Coelho
committed
move PYTHON_GIL to CI env
1 parent 8805463 commit 6c347df

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/ppp.yml

+6-3
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,12 @@ jobs:
3939
- version: "3.14t"
4040
cover: 96.5 # FIXME 3.14t coverage issue?
4141
gil: 1
42+
env:
43+
PYTHON_GIL: ${{ matrix.python.gil }}
4244
steps:
4345
# Setup
44-
- uses: actions/checkout@v4
46+
- name: Checkout Project
47+
uses: actions/checkout@v4
4548
- name: Set up Python ${{ matrix.python.version }}
4649
# uses: actions/setup-python@v5
4750
# FIXME switch to v6 when available
@@ -63,8 +66,8 @@ jobs:
6366
- name: Check with ruff
6467
run: make check.ruff
6568
- name: Check with pytest
66-
run: PYTHON_GIL=${{ matrix.python.gil }} make check.pytest
69+
run: make check.pytest
6770
- name: Check with coverage
68-
run: PYTHON_GIL=${{ matrix.python.gil }} make COVER=${{ matrix.python.cover }} check.coverage
71+
run: make COVER=${{ matrix.python.cover }} check.coverage
6972
- name: Check with pymarkdown
7073
run: make check.pymarkdown

0 commit comments

Comments
 (0)