This repository was archived by the owner on Sep 19, 2025. It is now read-only.
Update README.md #18
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |