Skip to content

Idle timeout

Idle timeout #4090

Workflow file for this run

name: lint
on: [push, pull_request]
permissions: "read-all"
jobs:
lint:
runs-on: ubuntu-20.04
timeout-minutes: 10
steps:
- name: "Checkout repository"
uses: actions/checkout@b32f140b0c872d58512e0a66172253c302617b90 # v4.0.0
- name: "Setup Python"
uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0
with:
python-version: "3.x"
cache: pip
- name: "Run pre-commit"
uses: pre-commit/action@646c83fcd040023954eafda54b4db0192ce70507 # v3.0.0
- name: "Install dependencies"
run: python -m pip install nox
- name: "Run mypy"
run: nox -s mypy