Skip to content

various optimizations and reorganizations #7

various optimizations and reorganizations

various optimizations and reorganizations #7

Workflow file for this run

name: Run pre-commit linters
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- run: pip install poetry
- run: poetry install --with dev
- run: poetry run pre-commit run --all-files