[build] More test-runners

* GHA does not cache python 3.6 for Windows, so use 3.8 instead
* Add tests for 3.11, PyPy3.8/3.9
* CPython 3.10 is now stable
* Do not pin Ubuntu to 18.04
pull/3775/head
pukkandan 2 years ago
parent 591bb9d355
commit 7a96d0b39c
No known key found for this signature in database
GPG Key ID: 7EEE9E1E817D0A39

@ -8,14 +8,14 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-18.04]
# py3.9 is in quick-test
python-version: [3.7, 3.8, 3.10-dev, pypy-3.6, pypy-3.7]
os: [ubuntu-latest]
# CPython 3.9 is in quick-test
python-version: ['3.6', '3.7', '3.10', 3.11-dev, pypy-3.6, pypy-3.7, pypy-3.8, pypy-3.9]
run-tests-ext: [sh]
include:
# atleast one of the tests must be in windows
- os: windows-latest
python-version: 3.6
python-version: 3.8
run-tests-ext: bat
steps:
- uses: actions/checkout@v2

@ -8,12 +8,12 @@ jobs:
strategy:
fail-fast: true
matrix:
os: [ubuntu-18.04]
python-version: [3.7, 3.8, 3.9, 3.10-dev, pypy-3.6, pypy-3.7]
os: [ubuntu-latest]
python-version: ['3.6', '3.7', '3.9', '3.10', 3.11-dev, pypy-3.6, pypy-3.7, pypy-3.8, pypy-3.9]
run-tests-ext: [sh]
include:
- os: windows-latest
python-version: 3.6
python-version: 3.8
run-tests-ext: bat
steps:
- uses: actions/checkout@v2

Loading…
Cancel
Save