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.
2 parents 537ae9f + 573019e commit 46c2108Copy full SHA for 46c2108
.github/workflows/python-linters.yml
@@ -8,10 +8,10 @@ jobs:
8
outputs:
9
filelist: ${{ steps.python-files.outputs.filelist }}
10
steps:
11
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
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