This repository was archived by the owner on Aug 29, 2025. It is now read-only.
chore(deps): update dependency pipx:mypy to v1.17.1 #387
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
name: CI | |
on: | |
pull_request: | |
workflow_call: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
schedule: | |
# Run every Monday at 00:30 UTC | |
- cron: "30 0 * * 1" | |
permissions: | |
contents: read | |
jobs: | |
mise-cache: | |
uses: nikobockerman/github-workflows/.github/workflows/mise-prepare-cache.yaml@59b2d100d7654de4ce5e1478598bcdd2d874c88e # v1.0.9 | |
uv-cache: | |
needs: mise-cache | |
uses: ./.github/workflows/mise-uv-prepare-cache.yaml | |
check-mypy: | |
needs: uv-cache | |
uses: ./.github/workflows/mise-uv-task.yaml | |
with: | |
task: check:mypy | |
check-prettier: | |
needs: mise-cache | |
uses: nikobockerman/github-workflows/.github/workflows/mise-task.yaml@59b2d100d7654de4ce5e1478598bcdd2d874c88e # v1.0.9 | |
with: | |
task: check:prettier | |
check-pyright: | |
needs: uv-cache | |
uses: ./.github/workflows/mise-uv-task.yaml | |
with: | |
task: check:pyright | |
check-renovate-config: | |
needs: mise-cache | |
uses: nikobockerman/github-workflows/.github/workflows/mise-task.yaml@59b2d100d7654de4ce5e1478598bcdd2d874c88e # v1.0.9 | |
with: | |
task: check:renovateconfig | |
check-ruff: | |
needs: mise-cache | |
uses: nikobockerman/github-workflows/.github/workflows/mise-task.yaml@59b2d100d7654de4ce5e1478598bcdd2d874c88e # v1.0.9 | |
with: | |
task: "check:ruff ::: check:ruff::format" | |
test-pytest: | |
needs: uv-cache | |
uses: ./.github/workflows/mise-uv-task.yaml | |
with: | |
task: check:pytest | |
run-all: | |
needs: uv-cache | |
uses: ./.github/workflows/mise-uv-task.yaml | |
with: | |
task: runall | |
check: | |
needs: | |
- check-mypy | |
- check-prettier | |
- check-pyright | |
- check-renovate-config | |
- check-ruff | |
- test-pytest | |
- run-all | |
if: always() | |
runs-on: ubuntu-latest | |
steps: | |
- uses: re-actors/alls-green@05ac9388f0aebcb5727afa17fcccfecd6f8ec5fe # v1.2.2 | |
with: | |
jobs: ${{ toJSON(needs) }} |