Skip to content

Commit

Permalink
feat: include dependencies check in workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
angrybayblade committed Oct 24, 2023
1 parent 1f9a45e commit e08c7be
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,8 @@ jobs:
run: tox -e package-version-checks
- name: Check package dependencies
run: tox -e package-dependencies-checks
- name: Check dependencies
run: tox -e check-dependencies
- name: Check generate protocols
run: tox -e check-generate-all-protocols
- name: Generate Documentation
Expand Down
12 changes: 12 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -478,3 +478,15 @@ deps =
docspec==2.2.1
docspec-python==2.2.1
commands = {toxinidir}/scripts/generate_api_docs.py

[testenv:check-dependencies]
deps =
toml==0.10.2
commands =
{toxinidir}/scripts/check_dependencies.py --check

[testenv:update-dependencies]
deps =
toml==0.10.2
commands =
{toxinidir}/scripts/check_dependencies.py

0 comments on commit e08c7be

Please sign in to comment.