Skip to content

fix code style #349

fix code style

fix code style #349

Workflow file for this run

name: 'Check test, code style and linter'
'on':
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
name: Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install and configure Poetry
uses: snok/install-poetry@v1
- name: Install dependencies
run: |
poetry install --all-extras
- name: Run tests
run: |
poetry run pytest