Skip to content

Commit 4f96efa

Browse files
author
Greg Lindahl
committed
fix: add back accidentally removed CI include
1 parent 3086620 commit 4f96efa

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.github/workflows/ci.yaml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,18 +18,20 @@ jobs:
1818
matrix:
1919
python-version: [
2020
'3.8', '3.9', '3.10', '3.11', '3.12'
21-
]
21+
]
2222
os: [ubuntu-latest]
2323
EXTRA: [false] # used to force includes to get included
2424
include:
2525
- python-version: '3.8'
2626
os: ubuntu-22.04 # oldest version on github actions
2727
EXTRA: true
28-
28+
- python-version: '3.12'
29+
os: ubuntu-latest
30+
DEBUG=TRUE
31+
EXTRA: true
2932
- python-version: '3.12'
3033
os: macos-latest
3134
EXTRA: true
32-
3335
- python-version: '3.12'
3436
os: windows-latest
3537
EXTRA: true
@@ -46,8 +48,9 @@ jobs:
4648
- name: Get Runner IP
4749
run: |
4850
echo "Runner IP: $(curl -s https://ipinfo.io/ip)"
49-
51+
5052
- name: Install setuptools on python 3.12+
53+
# apparently this is a quirk of Github action runners?
5154
if: ${{ matrix.python-version >= '3.12' }}
5255
run: |
5356
pip install setuptools

0 commit comments

Comments
 (0)