Skip to content

Update README.md

Update README.md #15

Workflow file for this run

name: mypy
on: [push, pull_request]
jobs:
run-checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.12"
- run: |
python -m pip install -U pip
python -m pip install -r requirements.txt
python -m pip install -U mypy
mypy .