ci: support Python 3.11

Also update GHA and Ubuntu.
This commit is contained in:
Christian Nicolai 2022-11-10 22:35:08 +01:00
parent a32d9907fb
commit 205b6f2c6f
1 changed files with 4 additions and 4 deletions

View File

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