Skip to content

style: format test_statistics #17

style: format test_statistics

style: format test_statistics #17

Workflow file for this run

name: Code Quality
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.13"
- name: Install
run: |
python -m pip install --upgrade pip
pip install black flake8 isort
- name: Check formatting
run: |
black --check .
isort --check-only .
flake8