fix lints #6
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: "Test uv & Lint" | |
| on: | |
| release: | |
| types: [created] | |
| pull_request: | |
| push: | |
| jobs: | |
| test-uv: | |
| name: Test uv & Lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Install Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version-file: ".python-version" | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| - name: Install the project | |
| run: uv sync --locked --all-extras --dev | |
| - name: Run Ruff format | |
| run: uvx ruff format --check | |
| - name: Run Ruff lint | |
| run: uvx ruff check |