We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8080c7c commit 19cebc1Copy full SHA for 19cebc1
.github/workflows/code_layout.yml
@@ -30,11 +30,16 @@ jobs:
30
sudo apt install -y \
31
expect \
32
silversearcher-ag
33
+
34
- uses: tj-actions/changed-files@v42
35
id: changed_files
36
with:
37
separator: ' '
38
env:
39
ALL_CHANGED_FILES: ${{ steps.changed_files.outputs.all_changed_files }}
40
+ run: echo "$ALL_CHANGED_FILES"
41
42
- name: Spell Test
- run: echo "$ALL_CHANGED_FILES" | ./scripts/spell_check/check_spelling.sh
43
+ run: |
44
+ echo "$ALL_CHANGED_FILES" \
45
+ echo "$ALL_CHANGED_FILES" | ./scripts/spell_check/check_spelling.sh
0 commit comments