ci: support Python 3.10+

Also update GHA and Ubuntu versions
This commit is contained in:
Christian Nicolai 2022-11-10 22:28:33 +01:00
parent d93b500b71
commit 76630cf903
1 changed files with 6 additions and 4 deletions

View File

@ -12,17 +12,19 @@ on:
jobs: jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-22.04
strategy: strategy:
fail-fast: false
matrix: matrix:
python-version: python-version:
- '3.7' - '3.7'
- '3.8'
- '3.9' - '3.9'
- '3.10'
- '3.11'
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }} - name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2 uses: actions/setup-python@v4
with: with:
python-version: ${{ matrix.python-version }} python-version: ${{ matrix.python-version }}
- name: Install dependencies - name: Install dependencies