Merge pull request #67 from sbidoul/test-py311

Test with python 3.11
This commit is contained in:
Stéphane Bidoul 2022-11-20 21:27:05 +01:00 committed by GitHub
commit f0c1e76c48
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -8,11 +8,14 @@ on:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.10", "3.11" ]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: "3.10"
python-version: ${{ matrix.python-version }}
- name: Install project
run: |
pip install -U "pip>=21.3.1"