We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de93605 commit 00ce2dcCopy full SHA for 00ce2dc
.github/workflows/lint.yml
@@ -38,8 +38,8 @@ jobs:
38
# install packages one-by-one so it is clearer which fails, if it does
39
python_packages=('flake8' 'pylint' 'ruff' 'mypy' 'pytype' 'pyright' 'fixit' 'pyre-check' 'flake8-sarif-formatter')
40
for package in "${python_packages[@]}"; do
41
- echo "::notice::Installing Python package $package"
42
- python3 -mpip install ${PIP_ARGS} -q
+ echo "::notice::Installing Python package ${package}"
+ python3 -mpip install ${PIP_ARGS} -q "${package}"
43
done
44
45
- name: Run Python Lint
0 commit comments