Skip to content

Commit

Permalink
updated runner python setup (#2592)
Browse files Browse the repository at this point in the history
* updated runner python setup

* set python version for runner

* trying a setuptools upgrade through pip

---------

Co-authored-by: Mikey <MBlakey@github.com>
  • Loading branch information
Mblakey and Mikey committed Jul 14, 2023
1 parent cb52875 commit fa222a3
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/lint_python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,12 @@ jobs:
lint_python:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- run: pip install --upgrade pip wheel
- run: pip install --upgrade setuptools
- run: pip install bandit black codespell flake8 flake8-bugbear
flake8-comprehensions isort mypy pytest pyupgrade safety
- run: bandit --recursive --skip B101,B314,B404,B405,B602,B603,B607 .
Expand Down

0 comments on commit fa222a3

Please sign in to comment.