Skip to content

Update lint.yml

Update lint.yml #372

Workflow file for this run

name: "lint"
on: [push, pull_request]
jobs:
mypy:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Check out repository
uses: actions/checkout@v6
- name: Set up Python 3.10
uses: actions/setup-python@v6
with:
python-version: 3.10
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install mypy tld
python3 -m pip install types-redis
python3 -m pip install types-requests
- name: Run mypy
run: mypy --strict *.py whoisdomain