diff --git a/.github/workflows/python-mypy.yml b/.github/workflows/python-mypy.yml new file mode 100644 index 0000000..c5f0f7f --- /dev/null +++ b/.github/workflows/python-mypy.yml @@ -0,0 +1,21 @@ +name: Mypy + +on: [push] + +jobs: + build: + runs-on: ubuntu-latest + name: Mypy + steps: + - uses: actions/checkout@v2 + - name: Set up Python + uses: actions/setup-python@v2 + with: + python-version: '3.x' + - name: Install Dependencies + run: | + python -m pip install --upgrade pip + pip install mypy + - name: mypy + run: | + mypy pydualsense/ \ No newline at end of file