Add BasePlateBottomSideRound feature, fix misc issues #132
Workflow file for this run
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
| # This workflow will install Python dependencies, run tests and lint with a variety of Python versions | |
| name: Python linting | |
| on: | |
| pull_request: | |
| branches: ["main"] | |
| workflow_dispatch: | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| - name: Set up Python | |
| run: uv python install && uv sync | |
| - name: Ruff lint | |
| run: | | |
| uvx ruff check | |
| - name: Vulture | |
| if: success() || failure() | |
| run: | | |
| uvx vulture ./src --min-confidence 61 | |
| - name: basedpyright | |
| if: success() || failure() | |
| run: uvx basedpyright --warnings | |
| - name: Ruff format | |
| if: success() || failure() | |
| run: | | |
| uvx ruff format --diff |