Last active
December 16, 2019 01:15
-
-
Save bh11111/3a188e261ca0f94cd493a37deb3f1526 to your computer and use it in GitHub Desktop.
Mypy Github Action
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: | |
build: | |
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 mypy | |
- name: mypy | |
run: | | |
mypy src/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment