Skip to content

[pre-commit.ci] pre-commit autoupdate #39

[pre-commit.ci] pre-commit autoupdate

[pre-commit.ci] pre-commit autoupdate #39

Workflow file for this run

name: Lint
on:
workflow_dispatch:
pull_request:
types:
- opened
- synchronize
branches:
- main
paths:
- 'src/**.pyi?'
- 'tests/**.pyi?'
- 'tox.ini'
- 'pyproject.toml'
- 'requirements/*.in'
- '.github/actions/setup-tox/**'
- '.github/workflows/lint.yml'
push:
branches:
- main
- release/**
tags-ignore:
- '*'
paths:
- 'src/**.pyi?'
- 'tests/**.pyi?'
- 'tox.ini'
- 'pyproject.toml'
- 'requirements/*.in'
- '.github/actions/setup-tox/**'
- '.github/workflows/lint.yml'
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: true
jobs:
type-hinting:
if: github.event_name != 'push' || !startsWith(github.event.head_commit.message, 'Bump version:')
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04, windows-2022, macos-12]
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: actions/setup-python@v5
id: setup-python
with:
python-version: '3.10'
- name: Setup tox
uses: ./.github/actions/setup-tox
- name: Launch checks
run: tox run -e mypy