Skip to content

Upgraded dependencies #41

Upgraded dependencies

Upgraded dependencies #41

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
tests:
name: Python ${{ matrix.python-version }}
runs-on: ubuntu-20.04
strategy:
matrix:
python-version:
- '3.8'
- '3.9'
- '3.10'
- '3.11'
- '3.12'
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install poetry
run: python -m pip install poetry==1.8.2
- name: Install dependencies
run: |
poetry env use ${{ matrix.python-version }}
poetry install --no-interaction
- name: Run tox targets for ${{ matrix.python-version }}
run: poetry run tox --py current