Skip to content

Commit

Permalink
fix: package commands not found
Browse files Browse the repository at this point in the history
  • Loading branch information
SunnyR committed May 27, 2024
1 parent ab365e9 commit 2b08297
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ jobs:
poetry install
- name: lint
run: |
isort .
black .
flake8 . --extend-ignore=D,E501,W601 --extend-exclude=docs/ --statistics --count
poetry run isort .
poetry run black .
poetry run flake8 . --extend-ignore=D,E501,W601 --extend-exclude=docs/ --statistics --count
- name: security
run: bandit -c pyproject.toml -r .
run: poetry run bandit -c pyproject.toml -r .
- name: test
run: python -m unittest discover

0 comments on commit 2b08297

Please sign in to comment.