Skip to content

update readme

update readme #73

Workflow file for this run

name: Check
on:
pull_request:
push:
workflow_dispatch:
jobs:
job:
strategy:
fail-fast: false
matrix:
PYTHON_VERSION: ["3.6", "3.7", "3.8", "3.9", "3.10"]
name: Check
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.PYTHON_VERSION }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.PYTHON_VERSION }}
- name: Install dependencies
run: |-
python -m pip install --upgrade pip
python -m pip install --upgrade setuptools wheel
python -m pip install --upgrade mypy
python -m pip install --upgrade .
- name: Run MyPy
run: python -m mypy -v -p ${{ github.event.repository.name }}