We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1701c75 commit e8afd8dCopy full SHA for e8afd8d
1 file changed
.github/workflows/python-app.yml
@@ -30,3 +30,21 @@ jobs:
30
- name: Build
31
run: |
32
python -m build -nwsx .
33
+
34
+ types:
35
36
+ runs-on: ubuntu-latest
37
38
+ steps:
39
+ - uses: actions/checkout@v2
40
+ - name: Set up Python 3.8
41
+ uses: actions/setup-python@v2
42
+ with:
43
+ python-version: 3.8
44
+ - name: Install dependencies
45
+ run: |
46
+ python -m pip install --upgrade pip
47
+ pip install --upgrade setuptools setuptools_scm wheel build tox mypy
48
+ - name: Check types
49
50
+ mypy .
0 commit comments