Skip to content

feat: ETH_RETRY_SUPPRESS_LOGS env var #39

feat: ETH_RETRY_SUPPRESS_LOGS env var

feat: ETH_RETRY_SUPPRESS_LOGS env var #39

Workflow file for this run

name: MyPy
on: pull_request
jobs:
mypy:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup Python (faster than using Python container)
uses: actions/setup-python@v2
with:
python-version: "3.9"
- name: Install MyPy
run: |
python -m pip install --upgrade pip
pip install mypy types-requests
- name: Run MyPy
run: mypy . --strict --pretty --show-error-codes --show-error-context