Skip to content

Commit e86bf2d

Browse files
committed
ci: fix invalid format of Python version for PyPy, refactor
1 parent 4c17b59 commit e86bf2d

File tree

1 file changed

+13
-6
lines changed

1 file changed

+13
-6
lines changed

.github/workflows/pythonpackage.yml

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,20 @@ jobs:
1515
runs-on: ${{ matrix.os }}
1616
strategy:
1717
matrix:
18-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
18+
python-version:
19+
- "3.6"
20+
- "3.7"
21+
- "3.8"
22+
- "3.9"
23+
- "3.10"
24+
- "3.11"
25+
- "3.12"
26+
- "pypy3.6"
27+
- "pypy3.7"
28+
- "pypy3.8"
29+
- "pypy3.9"
30+
- "pypy3.10"
1931
os: [ubuntu-latest]
20-
include:
21-
- python-version: 3.6
22-
os: ubuntu-20.04
23-
- python-version: pypy3
24-
os: ubuntu-20.04
2532

2633

2734
steps:

0 commit comments

Comments
 (0)