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 c46cc88 + f688481 commit bd135ffCopy full SHA for bd135ff
.github/workflows/ci.yml
@@ -89,8 +89,9 @@ jobs:
89
- name: Run style and typing checks
90
if: steps.check-files.outputs.should_check == 'true'
91
run: |
92
- echo "Running checks on files: ${{ steps.check-files.outputs.files }}"
93
- hatch run lint:all ${{ steps.check-files.outputs.files }}
+ FILES=$(echo "${{ steps.check-files.outputs.files }}" | tr '\n' ' ')
+ echo "Running checks on files: ${FILES}"
94
+ hatch run lint:all ${FILES}
95
96
matrix:
97
if: ${{ always() }}
0 commit comments