Skip to content

Commit

Permalink
Add GitHub action to do MyPy type check.
Browse files Browse the repository at this point in the history
  • Loading branch information
Lattyware committed Nov 2, 2019
1 parent 8d71ae7 commit 0755252
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
12 changes: 12 additions & 0 deletions .github/workflows/typecheck.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: MyPy Check

on: [push, pull_request]

jobs:
typecheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: jpetrucciani/[email protected]
with:
path: '-punrpa'
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@ __pycache__
.idea
dist/
build
*.egg-info
*.egg-info
.mypy_cache

0 comments on commit 0755252

Please sign in to comment.