Skip to content

chore(deps-dev): update black requirement from ^24.8 to ^25.1 #15

chore(deps-dev): update black requirement from ^24.8 to ^25.1

chore(deps-dev): update black requirement from ^24.8 to ^25.1 #15

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