File tree Expand file tree Collapse file tree 7 files changed +5
-4
lines changed
Expand file tree Collapse file tree 7 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 4747 id : pylint
4848 run : |
4949 echo "Running pylint..."
50- if pylint src > pylint-output.txt 2>&1; then
50+ if pylint app > pylint-output.txt 2>&1; then
5151 echo "PYLINT_PASSED=true" >> $GITHUB_ENV
5252 echo "No pylint errors found!"
5353 else
6161 id : ruff
6262 run : |
6363 echo "Running ruff check..."
64- if ruff check . > ruff-output.txt 2>&1; then
64+ if ruff check app > ruff-output.txt 2>&1; then
6565 echo "RUFF_PASSED=true" >> $GITHUB_ENV
6666 echo "No ruff errors found!"
6767 else
@@ -75,14 +75,15 @@ jobs:
7575 id : mypy
7676 run : |
7777 echo "Running mypy..."
78- if mypy . > mypy-output.txt 2>&1; then
78+ cd app
79+ if mypy . > ../mypy-output.txt 2>&1; then
7980 echo "MYPY_PASSED=true" >> $GITHUB_ENV
8081 echo "No mypy errors found"
8182 else
8283 echo "MYPY_PASSED=false" >> $GITHUB_ENV
8384 echo "Mypy found issues"
8485 fi
85- cat mypy-output.txt
86+ cat ../ mypy-output.txt
8687 continue-on-error : true
8788
8889 - name : Create Lint Summary
You can’t perform that action at this time.
0 commit comments