26 lines
429 B
YAML
26 lines
429 B
YAML
name: Lint and Format
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Install uv
|
|
uses: astral-sh/setup-uv@v5
|
|
|
|
- name: Check formatting with ruff
|
|
run: uvx ruff format --check src/
|
|
|
|
- name: Lint with ruff
|
|
run: uvx ruff check src/
|