test(python): 3.9, 3.10, 3.11 (#2718)

This commit is contained in:
Pepe Fagoaga
2023-08-14 21:08:29 +02:00
committed by GitHub
parent 7ffb12268d
commit 54137be92b
3 changed files with 41 additions and 7 deletions

View File

@@ -13,19 +13,19 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9"]
python-version: ["3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Install poetry
run: |
python -m pip install --upgrade pip
pipx install poetry
python -m pip install --upgrade pip
pipx install poetry
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'poetry'
cache: "poetry"
- name: Install dependencies
run: |
poetry install