diff options
| author | Sebastian Thiel <sebastian.thiel@icloud.com> | 2021-04-23 21:36:48 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-23 21:36:48 +0800 |
| commit | 4119a576251448793c07ebd080534948cad2f170 (patch) | |
| tree | 7bffff60a75770882832eec5ff2efcac9741139f /.github/workflows/pythonpackage.yml | |
| parent | 9f12c8c34371a7c46dad6788a48cf092042027ec (diff) | |
| parent | 043e15fe140cfff8725d4f615f42fa1c55779402 (diff) | |
| download | gitpython-4119a576251448793c07ebd080534948cad2f170.tar.gz | |
Merge pull request #1226 from muggenhor/testing
ci: check types with mypy
Diffstat (limited to '.github/workflows/pythonpackage.yml')
| -rw-r--r-- | .github/workflows/pythonpackage.yml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml index eb5c894e..3c7215cb 100644 --- a/.github/workflows/pythonpackage.yml +++ b/.github/workflows/pythonpackage.yml @@ -47,6 +47,11 @@ jobs: pip install flake8 # stop the build if there are Python syntax errors or undefined names flake8 --ignore=W293,E265,E266,W503,W504,E731 --count --show-source --statistics + - name: Check types with mypy + run: | + set -x + pip install tox + tox -e type - name: Test with nose run: | set -x |
