Update recommended extensions (cleanup) #61
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 | |