We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9707355 commit 307cba6Copy full SHA for 307cba6
.github/workflows/py-typecheck.yml
@@ -0,0 +1,22 @@
1
+name: Python Type Checks
2
+
3
+on: [push]
4
5
+jobs:
6
+ build:
7
+ runs-on: ${{ matrix.os }}
8
+ strategy:
9
+ matrix:
10
+ os: [ubuntu-latest]
11
+ python-version: [3.8]
12
13
+ steps:
14
+ - uses: actions/checkout@v2
15
+ - name: Set up Python ${{ matrix.python-version }}
16
+ uses: actions/setup-python@v2
17
+ with:
18
+ python-version: ${{ matrix.python-version }}
19
+ - name: Install Python testing dependencies
20
+ run: pip install --upgrade mypy
21
+ - name: Static type checks
22
+ run: mypy lib/fdiff
0 commit comments