8000 Add setup of all supported Python interpreters to GitHub Actions work… · html5lib/html5lib-python@e09d0ca · GitHub
[go: up one dir, main page]

Skip to content

Commit e09d0ca

Browse files
committed
Add setup of all supported Python interpreters to GitHub Actions workflow
1 parent 19ade46 commit e09d0ca

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/python-tox.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,25 @@ jobs:
77
with:
88
submodules: true
99
- uses: actions/setup-python@v2
10+
with:
11+
python-version: 2.7
12+
- uses: actions/setup-python@v2
13+
with:
14+
python-version: 3.5
15+
- uses: actions/setup-python@v2
16+
with:
17+
python-version: 3.6
18+
- uses: actions/setup-python@v2
19+
with:
20+
python-version: 3.7
21+
- uses: actions/setup-python@v2
22+
with:
23+
python-version: 3.8
24+
- uses: actions/setup-python@v2
25+
with:
26+
python-version: pypy
27+
- uses: actions/setup-python@v2
28+
with:
29+
python-version: pypy3
1030
- run: pip install tox
1131
- run: tox

0 commit comments

Comments
 (0)
0