This repository has been archived by the owner on Oct 18, 2024. It is now read-only.
Add examples to the description #6
Workflow file for this run
This file contains 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: | |
typecheck: | |
runs-on: "ubuntu-latest" | |
strategy: | |
matrix: | |
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] | |
steps: | |
- uses: "actions/checkout@v4" | |
- name: "Set up Python ${{matrix.python-version}}" | |
uses: "actions/setup-python@v3" | |
with: | |
python-version: "${{matrix.python-version}}" | |
- name: "Install the project" | |
run: | | |
pipx install poetry | |
poetry install | |
- name: "Type-check with mypy" | |
run: > | |
poetry run mypy . --strict | |
|| (echo yes | poetry run mypy --install-types && poetry run mypy . --strict) |