Skip to content

Commit e8afd8d

Browse files
committed
ci: add basic job for checking types
1 parent 1701c75 commit e8afd8d

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

.github/workflows/python-app.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,21 @@ jobs:
3030
- name: Build
3131
run: |
3232
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+
run: |
50+
mypy .

0 commit comments

Comments
 (0)