Skip to content

docs: add contributing guide and clean up docs #152

docs: add contributing guide and clean up docs

docs: add contributing guide and clean up docs #152

Workflow file for this run

name: ci
on:
pull_request:
permissions:
contents: read
jobs:
checks:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5
- name: Set up uv and dependencies
uses: ./.github/actions/setup-uv
- name: Ruff format check
run: uv run ruff format --check .
- name: Ruff lint check
run: uv run ruff check .
- name: Ty type check
run: uv run ty check .