Skip to content

feat: reports and download links #177

feat: reports and download links

feat: reports and download links #177

Workflow file for this run

name: Lint
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install UV
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
- name: Install dependencies
run: |
uv sync --all-extras
- name: Run Ruff
run: uv run ruff check app tests
- name: Run Black
run: uv run black --check app tests
- name: Run MyPy
run: uv run mypy app --ignore-missing-imports