Merge pull request #1 from valentingol/dev #4
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: | |
mypy-lint: | |
runs-on: ubuntu-latest | |
name: MyPy Lint | |
steps: | |
- name: Check out source repository | |
uses: actions/checkout@v2 | |
- name: Mypy Check | |
run: | | |
python -m pip install --upgrade pip | |
pip install mypy==1.1.1 mypy-extensions==1.0.0 | |
python -m pip install types-PyYAML | |
mypy --install-types --non-interactive --config-file pyproject.toml . |