Skip to content

Fixed formatting

Fixed formatting #15

Workflow file for this run

name: CI
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.14'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install ruff black
- name: Lint (ruff)
run: ruff check .
- name: Format check (black)
run: black --check .
- name: Run tests
run: pytest -q