From a72998386c0b9f7b79820eec1a60f2e25a2e1713 Mon Sep 17 00:00:00 2001 From: Adrian Sampson Date: Sat, 11 Jan 2020 15:25:19 -0500 Subject: [PATCH] Add MyPy GitHub action --- .github/workflows/style.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/style.yml b/.github/workflows/style.yml index 4967ccb..eef38d3 100644 --- a/.github/workflows/style.yml +++ b/.github/workflows/style.yml @@ -3,8 +3,13 @@ name: Style Check on: [push, pull_request] jobs: - build: + flake8: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - uses: TrueBrain/actions-flake8@master + mypy: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - uses: jpetrucciani/mypy-check@master