Skip to content

Commit d8cd410

Browse files
author
Fabien Coelho
committed
move PYTHON_GIL to CI env
1 parent c302137 commit d8cd410

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/ctu.yml

+6-3
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,12 @@ jobs:
5050
cover: 84.0
5151
gil: 1
5252
deps: doc,dev,tests
53+
env:
54+
PYTHON_GIL: ${{ matrix.python.gil }}
5355
steps:
5456
# Setup
55-
- uses: actions/checkout@v4
57+
- name: Checkout Project
58+
uses: actions/checkout@v4
5659
- name: Set up Python ${{ matrix.python.version }}
5760
# uses: actions/setup-python@v5
5861
uses: actions/setup-python@main
@@ -75,9 +78,9 @@ jobs:
7578
- name: Check the docs
7679
run: make check.docs
7780
- name: Check with pytest
78-
run: PYTHON_GIL=${{ matrix.python.gil }} make check.pytest
81+
run: make check.pytest
7982
- name: Check with coverage
80-
run: PYTHON_GIL=${{ matrix.python.gil }} make COVER=${{ matrix.python.cover }} check.coverage
83+
run: make COVER=${{ matrix.python.cover }} check.coverage
8184
- name: Check with pyright
8285
run: make check.pyright
8386
# 2025-03-07: KO with 3.13t because types-redis requires cryptography

0 commit comments

Comments
 (0)