mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-16 15:39:21 +01:00
ci: Make Ubuntu versions explicit
Github just migrated us to Ubuntu 22.04, but it can't run Python 3.6 on it
This commit is contained in:
parent
1a7c14f4b3
commit
d372d55c05
44
.github/workflows/test.yml
vendored
44
.github/workflows/test.yml
vendored
@ -10,15 +10,45 @@ jobs:
|
||||
runs-on: ${{ matrix.runs-on }}
|
||||
strategy:
|
||||
matrix:
|
||||
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11.0-rc.2", "pypy-3.6", "pypy-3.7"]
|
||||
with-opt-deps: [false, true]
|
||||
runs-on: [ubuntu-latest]
|
||||
exclude:
|
||||
# Some of the dependencies don't work on old Python versions
|
||||
include:
|
||||
- python-version: "3.11.0-rc.2"
|
||||
with-opt-deps: true
|
||||
runs-on: ubuntu-22.04
|
||||
|
||||
- python-version: "3.10"
|
||||
with-opt-deps: true
|
||||
runs-on: ubuntu-22.04
|
||||
- python-version: "3.10"
|
||||
with-opt-deps: false
|
||||
runs-on: ubuntu-22.04
|
||||
|
||||
- python-version: "3.9"
|
||||
with-opt-deps: true
|
||||
runs-on: ubuntu-22.04
|
||||
|
||||
- python-version: "3.8"
|
||||
with-opt-deps: true
|
||||
runs-on: ubuntu-22.04
|
||||
|
||||
- python-version: "3.7"
|
||||
with-opt-deps: true
|
||||
runs-on: ubuntu-22.04
|
||||
- python-version: "3.7"
|
||||
with-opt-deps: false
|
||||
runs-on: ubuntu-22.04
|
||||
- python-version: "pypy-3.7"
|
||||
with-opt-deps: true
|
||||
runs-on: ubuntu-22.04
|
||||
- python-version: "pypy-3.7"
|
||||
with-opt-deps: false
|
||||
runs-on: ubuntu-22.04
|
||||
|
||||
- python-version: "3.6"
|
||||
with-opt-deps: true
|
||||
with-opt-deps: false
|
||||
runs-on: ubuntu-20.04
|
||||
- python-version: "pypy-3.6"
|
||||
with-opt-deps: true
|
||||
with-opt-deps: false
|
||||
runs-on: ubuntu-20.04
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
Loading…
Reference in New Issue
Block a user