fix(deps): update all non-major dependencies #409
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: Python PR Checks | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: [main] | |
| paths: | |
| - 'python/**' | |
| - '.github/workflows/pr-checks-python.yml' | |
| pull_request: | |
| types: [opened, edited, synchronize, reopened] | |
| paths: | |
| - 'python/**' | |
| - '.github/workflows/pr-checks-python.yml' | |
| jobs: | |
| build-and-test: | |
| name: Build and Test | |
| runs-on: ubuntu-latest | |
| if: github.event_name != 'pull_request' || github.event.action != 'edited' || github.event.pull_request.user.login == 'renovate[bot]' | |
| defaults: | |
| run: | |
| working-directory: python | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| with: | |
| enable-cache: true | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.14' | |
| - name: Install dependencies | |
| run: uv sync --all-packages --all-extras | |
| - name: Lint with ruff | |
| run: uv run ruff check . | |
| - name: Build packages | |
| run: uv build --all | |
| - name: Run tests | |
| run: uv run pytest |