Skip to content

build(deps): bump the all-dependencies group across 1 directory with 2 updates #3348

build(deps): bump the all-dependencies group across 1 directory with 2 updates

build(deps): bump the all-dependencies group across 1 directory with 2 updates #3348

Workflow file for this run

name: Linting
on: # yamllint disable-line rule:truthy
push:
branches:
- main
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-${{ startsWith(github.ref, 'refs/pull/') || github.run_number }} # yamllint disable-line
# Only cancel intermediate builds if on a PR:
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
jobs:
mypy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v7
- name: Set up uv
uses: astral-sh/setup-uv@c771a70e6277c0a99b617c7a806ffedaca235ff9 # v9.0.0
with:
python-version: '3.10'
activate-environment: true
- name: Install dependencies
run: uv pip install mypy
- name: Check type hints
continue-on-error: true
run: |
mypy --install-types --non-interactive