Skip to content

Lint: 88/merge

Lint: 88/merge #100

Workflow file for this run

name: "CI: Lint and Format Check"
run-name: "Lint: ${{ github.ref_name }}"
on:
push:
branches:
- main
- develop
- 'feature/**'
pull_request:
branches:
- main
- develop
jobs:
lint:
name: Run Linting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.13'
- name: Install uv
uses: astral-sh/setup-uv@v7
- name: Install dependencies
run: |
uv sync --all-extras
- name: Run linting
run: |
uv run ruff check .
- name: Check code formatting
run: |
uv run ruff format --check .