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 ff76de7 commit a5e5e61Copy full SHA for a5e5e61
.github/workflows/tests.yml
@@ -28,9 +28,9 @@ jobs:
28
sudo apt-get install -y hunspell hunspell-fr-comprehensive
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), '' '') }}'
+ env:
+ 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