Skip to content

Commit

Permalink
[fix][ci] remove python/ from changed files that are passed in (#575)
Browse files Browse the repository at this point in the history
  • Loading branch information
nowei authored Dec 9, 2024
1 parent 6a052a2 commit 37457e4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/qa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,8 @@ jobs:
if: steps.changed-py-files.outputs.any_changed == 'true'
env:
CHANGED_PY_FILES: ${{ steps.changed-py-files.outputs.all_changed_files }}
run: poetry run mypy $CHANGED_PY_FILES --ignore-missing-imports
# Remove the python/ that is prepended
run: poetry run mypy ${CHANGED_PY_FILES//python\/} --ignore-missing-imports

tflint:
name: Lint terraform
Expand Down

0 comments on commit 37457e4

Please sign in to comment.