chore(deps): update dependency astral-sh/uv to v0.9.15 #1924
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: Lint | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| type-checking: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.14" | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| with: | |
| version: "0.9.12" | |
| - name: Install the project | |
| run: uv sync --locked --all-extras --dev | |
| - name: Lint with mypy | |
| run: | | |
| uv run mypy pyzeebe | |
| import-checking: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.14" | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| with: | |
| version: "0.9.12" | |
| - name: Install the project | |
| run: uv sync --locked --all-extras --dev | |
| - name: Check imports | |
| run: | | |
| uv run isort . --check --diff | |
| format-checking: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.14" | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| with: | |
| version: "0.9.12" | |
| - name: Install the project | |
| run: uv sync --locked --all-extras --dev | |
| - name: Check imports | |
| run: | | |
| uv run black --check . |