Update python workflow

update version of setup-python and checkout action
pull/1196/head
Arsenic 2023-06-04 19:25:02 +05:30 committed by Ankur
parent 7e16a576bc
commit 0436fb61c0
1 changed files with 1 additions and 0 deletions

View File

@ -12,6 +12,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- run: pip install --upgrade setuptools
- run: pip install bandit black flake8 isort mypy pytest pyupgrade safety
- run: bandit --recursive --skip B101 . # B101 is assert statements
- run: black --check . || true