Skip to content
This repository was archived by the owner on Sep 19, 2025. It is now read-only.

Update README.md

Update README.md #18

Workflow file for this run

name: Mypy
on: [push]
jobs:
mypy:
runs-on: ubuntu-latest
name: Mypy
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Install Dependencies
run: |
pip install poetry==1.1.4
poetry install
- name: Check types
run: poetry run mypy ./src