ci: add python 3.11 to ci

This commit is contained in:
Alexander Engelsberger 2022-10-26 12:58:05 +02:00
parent 9ab864fbdf
commit 45f01f39d4
No known key found for this signature in database

View File

@ -21,13 +21,13 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install .[all]
- uses: pre-commit/action@v2.0.3
- uses: pre-commit/action@v3.0.0
compatibility:
needs: style
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
os: [ubuntu-latest, windows-latest]
exclude:
- os: windows-latest
@ -36,7 +36,8 @@ jobs:
python-version: "3.8"
- os: windows-latest
python-version: "3.9"
- os: windows-latest
python-version: "3.11"
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2