Skip to content

Commit 0e495a0

Browse files
committed
CI: pypy-3.7-nightly
1 parent ba809f3 commit 0e495a0

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/tests.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
max-parallel: 5
1010
matrix:
11-
python-version: [3.7, 3.8, 3.9]
11+
python-version: [3.7, 3.8, 3.9, pypy-3.7-nightly]
1212

1313
steps:
1414

@@ -22,11 +22,15 @@ jobs:
2222
with:
2323
python-version: ${{ matrix.python-version }}
2424

25-
- name: Install dependencies
25+
- if: startsWith(matrix.python-version, "pypy") != true
26+
name: Install HPy (only for CPython)
2627
run: |
2728
git clone -b release/0.0.3 --single-branch https://github.com/hpyproject/hpy
2829
cd hpy
2930
pip install .
31+
32+
- name: Install dependencies
33+
run: |
3034
pip install numpy cython pytest transonic pythran
3135
3236
- name: Checkout

0 commit comments

Comments
 (0)