Bump idna from 3.13 to 3.15 in the uv group across 1 directory #150
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, format and test after push" | |
| concurrency: | |
| group: "pygeoapi-k8s-manager-push-lint-and-test" | |
| cancel-in-progress: true | |
| on: | |
| # all pushes and PRs, but not tags | |
| push: | |
| branches: ['**'] | |
| tags-ignore: ['**'] | |
| pull_request: | |
| jobs: | |
| lint-format-and-test: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 2 | |
| steps: | |
| - | |
| name: Checkout Repository | |
| uses: actions/checkout@v6 | |
| - | |
| name: Install uv | |
| uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0 | |
| - | |
| name: Set up Python | |
| run: uv python install | |
| - | |
| name: Install the project | |
| run: uv sync --locked --all-extras --dev | |
| - | |
| name: run linter and formatter | |
| run: | | |
| uv run ruff check | |
| uv run ruff check --select I | |
| uv run ruff format --diff | |
| - | |
| name: run tests | |
| run: | | |
| uv run pytest tests/ |