Skip to content

feat: added src. to main.py #69

feat: added src. to main.py

feat: added src. to main.py #69

Workflow file for this run

name: Lint
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
black:
name: Run black code formatter
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version-file: ".python-version"
- name: Install the project
run: uv sync --only-dev
- name: Run Black Check
run: uv run black --check .