Skip to content

Commit 60dec18

Browse files
committed
CI: run unittests with beta cython
1 parent fe5ffc9 commit 60dec18

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/unittests.yml

+10
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ jobs:
3232
fail-fast: false
3333
matrix:
3434
os: [ubuntu-latest]
35+
cython:
36+
- stable
3537
python:
3638
- {version: '3.8'}
3739
- {version: '3.9'}
@@ -43,13 +45,21 @@ jobs:
4345
os: windows-latest
4446
- python: {version: '3.10'} # current
4547
os: macos-latest
48+
- python: {version: '3.10'} # current
49+
os: ubuntu
50+
cython: beta
4651

4752
steps:
4853
- uses: actions/checkout@v3
4954
- name: Set up Python ${{ matrix.python.version }}
5055
uses: actions/setup-python@v4
5156
with:
5257
python-version: ${{ matrix.python.version }}
58+
- name: Install cython beta
59+
if: ${{ matrix.cython == 'beta' }}
60+
run: |
61+
python -m pip install --upgrade pip
62+
python -m pip install --pre --upgrade cython
5363
- name: Install dependencies
5464
run: |
5565
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)