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 537ae9f commit 7324359Copy full SHA for 7324359
.github/workflows/python-linters.yml
@@ -11,7 +11,7 @@ jobs:
11
- uses: actions/checkout@v2
12
- id: python-files
13
run: |
14
- echo "filelist=:$(find . -type f -exec awk ' /^#!.*python/{print FILENAME} {nextfile}' {} + | tr '\n' ' ')" >> $GITHUB_OUTPUT
+ echo "filelist=$(find . -type f -exec awk ' /^#!.*python/{print FILENAME} {nextfile}' {} + | tr '\n' ' ')" >> $GITHUB_OUTPUT
15
16
pylint:
17
runs-on: ubuntu-20.04
@@ -69,5 +69,4 @@ jobs:
69
env:
70
PYTHON_FILES: ${{ needs.python-files.outputs.filelist }}
71
run: | # Change PYTHONPATH for different repo
72
- export PYTHONPATH=$PYTHONPATH:$PWD/src/scripts
73
flake8 --select F $PYTHON_FILES
0 commit comments