diff options
| author | John L. Villalovos <debian.org@sodarock.com> | 2021-02-15 10:13:35 -0800 |
|---|---|---|
| committer | John L. Villalovos <debian.org@sodarock.com> | 2021-02-22 16:33:33 -0800 |
| commit | fdec03976a17e0708459ba2fab22f54173295f71 (patch) | |
| tree | c8ae5929be5041463b080cf73b4e4b961317f897 /.github/workflows | |
| parent | d9fdf1db9b928ac154ad385cf6e7f8220ea42aa1 (diff) | |
| download | gitlab-fdec03976a17e0708459ba2fab22f54173295f71.tar.gz | |
feat: add an initial mypy test to tox.ini
Add an initial mypy test to test gitlab/base.py and gitlab/__init__.py
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/lint.yml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 968320d..4b918df 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -27,3 +27,11 @@ jobs: with: fetch-depth: 0 - uses: wagoid/commitlint-github-action@v2 + + mypy: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-python@v2 + - run: pip install --upgrade tox + - run: tox -e mypy |
