Set up check-manifest and check-python-versions on CI
This commit is contained in:
parent
6e37208785
commit
49a9af2e99
2 changed files with 12 additions and 0 deletions
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
|
|
@ -76,6 +76,8 @@ jobs:
|
|||
toxenv:
|
||||
- flake8
|
||||
- isort
|
||||
- check-manifest
|
||||
- check-python-versions
|
||||
|
||||
steps:
|
||||
- name: Git clone
|
||||
|
|
|
|||
10
tox.ini
10
tox.ini
|
|
@ -24,3 +24,13 @@ commands = flake8 findimports.py setup.py tests.py testsuite.py
|
|||
deps = isort
|
||||
skip_install = true
|
||||
commands = isort {posargs: -c --diff findimports.py setup.py tests.py testsuite.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}
|
||||
|
|
|
|||
Loading…
Reference in a new issue