Skip to content

chore(deps-dev): update ruff requirement from ^0.6 to ^0.13 #16

chore(deps-dev): update ruff requirement from ^0.6 to ^0.13

chore(deps-dev): update ruff requirement from ^0.6 to ^0.13 #16

Workflow file for this run

name: CI / build
on:
pull_request:
push:
branches: [main]
jobs:
python:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11","3.12"]
steps:
- uses: actions/checkout@v5
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- run: python -m pip install -U pip
- run: pip install poetry
- run: poetry install --no-interaction
- run: poetry run ruff check .
- run: poetry run black --check .
- run: PYTHONPATH=src poetry run pytest -q
- run: poetry run mypy src