Skip to content

Update recommended extensions (cleanup) #61

Update recommended extensions (cleanup)

Update recommended extensions (cleanup) #61

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- uses: astral-sh/setup-uv@v4
- name: Sync dependencies
run: uv sync --group dev
- name: Format
run: uv run pydocstringformatter src tests && uv format
- name: Lint
run: uv format --check
- name: Type check
run: uv run mypy src tests
- name: Test
run: uv run pytest