Skip to content

Workflows

Workflows #1

Workflow file for this run

name: Lint and Format
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: |
pip install ruff black isort mypy
- name: Run Black
run: black --check .
- name: Run isort
run: isort --check-only .
- name: Run Ruff
run: ruff check .
- name: Run mypy
run: mypy . --ignore-missing-imports