Skip to content

Instantly share code, notes, and snippets.

@doedotdev
Last active December 16, 2019 01:15
Show Gist options
  • Save doedotdev/3a188e261ca0f94cd493a37deb3f1526 to your computer and use it in GitHub Desktop.
Save doedotdev/3a188e261ca0f94cd493a37deb3f1526 to your computer and use it in GitHub Desktop.
Mypy Github Action
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