feat: introduce new scaffold templates and enhance project configuration #7
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: Ruff Lint & Format | |
| on: [push, pull_request] | |
| jobs: | |
| ruff: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Set up Python | |
| uses: astral-sh/setup-uv@v7 | |
| with: | |
| python-version: "3.12" | |
| enable-cache: true | |
| cache-suffix: "ruff" | |
| - name: Install dependencies (dev) | |
| run: uv sync --dev | |
| - name: Ruff Lint | |
| run: uv run ruff check . | |
| - name: Ruff Format (check only) | |
| run: uv run ruff format . --check |