Test with python 3.11

This commit is contained in:
Stéphane Bidoul 2022-07-16 11:17:41 +02:00
parent b111e81e26
commit 3ec2c5b062

View file

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