Skip to content

Commit

Permalink
Set up check-manifest and check-python-versions on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
mgedmin committed Dec 8, 2020
1 parent 49ab714 commit bcdfa5e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/build.yml
Expand Up @@ -72,6 +72,8 @@ jobs:
toxenv:
- flake8
- isort
- check-manifest
- check-python-versions

steps:
- name: Git clone
Expand Down
10 changes: 10 additions & 0 deletions tox.ini
Expand Up @@ -43,3 +43,13 @@ basepython = python3
deps = isort
skip_install = true
commands = isort {posargs: -c --diff} src setup.py gtimelog runtests benchmark.py

[testenv:check-manifest]
deps = check-manifest
skip_install = true
commands = check-manifest {posargs}

[testenv:check-python-versions]
deps = check-python-versions
skip_install = true
commands = check-python-versions {posargs}

0 comments on commit bcdfa5e

Please sign in to comment.