chore: Bump the minor-and-patch group across 1 directory with 30 updates #2360
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 test | |
| # On every pull request, but only on push to master | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| tests: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ["3.11", "3.12", "3.13"] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| id: setup-python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - uses: pnpm/action-setup@v4 | |
| # Note: this should stay synced with the volta-pinned version in | |
| # package.json | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: "22" | |
| cache: "pnpm" | |
| - name: Install JS dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Install a specific version of uv | |
| uses: astral-sh/setup-uv@v7 | |
| with: | |
| enable-cache: true | |
| version: "0.4.x" | |
| # Note: we don't install the "watchfiles" group on CI because it gives | |
| # threading errors when running tests. See | |
| # https://github.com/developmentseed/lonboard/pull/234 | |
| # https://github.com/manzt/anywidget/issues/374 | |
| - name: Install root project | |
| run: uv sync --no-group watchfiles | |
| - name: Build JS bundle | |
| run: pnpm run build | |
| - name: Install Playwright browsers | |
| run: | | |
| uv run playwright install chromium | |
| - name: Run tests | |
| run: uv run pytest | |
| - name: Run tests (all deps) | |
| run: | | |
| uv sync --extra geopandas --extra cli | |
| uv run pytest | |
| # Ensure docs build without warnings | |
| - name: Check docs | |
| if: "${{ matrix.python-version == 3.11 }}" | |
| run: uv run --group docs mkdocs build --strict | |
| # Use ruff-action so we get annotations in the Github UI | |
| - uses: astral-sh/ruff-action@v3 | |
| - name: Cache pre-commit virtualenvs | |
| uses: actions/cache@v5 | |
| if: "${{ matrix.python-version == 3.11 }}" | |
| with: | |
| path: ~/.cache/pre-commit | |
| key: pre-commit-3|${{ hashFiles('.pre-commit-config.yaml') }} | |
| - name: run pre-commit | |
| if: "${{ matrix.python-version == 3.11 }}" | |
| run: | | |
| uv run pre-commit run --show-diff-on-failure --color=always --all-files |