File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -26,19 +26,19 @@ jobs:
26
26
cover : 100.0
27
27
- version : " 3.13t"
28
28
cover : 100.0
29
- env : PYTHON_GIL= 0
29
+ gil : 0
30
30
- version : " 3.13t"
31
31
cover : 100.0
32
- env : PYTHON_GIL= 1
32
+ gil : 1
33
33
# 3.14 including nogil
34
34
- version : " 3.14"
35
35
cover : 100.0
36
36
- version : " 3.14t"
37
37
cover : 96.5 # FIXME 3.14t coverage issue?!
38
- env : PYTHON_GIL= 0
38
+ gil : 0
39
39
- version : " 3.14t"
40
40
cover : 96.5 # FIXME 3.14t coverage issue?
41
- env : PYTHON_GIL= 1
41
+ gil : 1
42
42
steps :
43
43
# Setup
44
44
- uses : actions/checkout@v4
63
63
- name : Check with ruff
64
64
run : make check.ruff
65
65
- name : Check with pytest
66
- run : make check.pytest
66
+ run : PYTHON_GIL=${{ matrix.python.gil }} make check.pytest
67
67
- 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
69
69
- name : Check with pymarkdown
70
70
run : make check.pymarkdown
You can’t perform that action at this time.
0 commit comments