Thanks to visit codestin.com Credit goes to github.com
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 27e1dc7 commit ff76de7Copy full SHA for ff76de7
.github/workflows/tests.yml
@@ -29,8 +29,8 @@ jobs:
29
sudo python3 -m pip install pospell
30
- name: Run pospell
31
with:
32
- ADDED_FILES: ${{ join(fromJSON(steps.changed_files.outputs.added), ' ') }}
33
- MODIFIED_FILES: ${{ join(fromJSON(steps.changed_files.outputs.modified), ' ') }}
+ ADDED_FILES: '${{ join(fromJSON(steps.changed_files.outputs.added), '' '') }}'
+ MODIFIED_FILES: '${{ join(fromJSON(steps.changed_files.outputs.modified), '' '') }}'
34
run: |
35
CHANGED_PO_FILES=$(printf "%s %s\n" "$ADDED_FILES" "$MODIFIED_FILES" | tr ' ' '\n' | grep '.po$')
36
[ -n "$CHANGED_PO_FILES" ] && pospell -p dict -l fr_FR $CHANGED_PO_FILES
0 commit comments