Skip to content

Commit 2bb4a13

Browse files
echo
1 parent 8080c7c commit 2bb4a13

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

.github/workflows/code_layout.yml

+10-4
Original file line numberDiff line numberDiff line change
@@ -19,22 +19,28 @@ env:
1919
DOXYGEN_VERSION: 1.9.8
2020

2121
jobs:
22-
2322
spell_check:
2423
runs-on: ubuntu-latest
2524
steps:
2625
- name: Checkout
2726
uses: actions/checkout@v4
27+
2828
- name: Install Requirements
2929
run: |
3030
sudo apt install -y \
3131
expect \
3232
silversearcher-ag
33-
- uses: tj-actions/changed-files@v42
33+
34+
- name: Retrieve changed files
35+
uses: tj-actions/changed-files@v42
3436
id: changed_files
3537
with:
36-
separator: ' '
38+
separator: " "
3739
env:
3840
ALL_CHANGED_FILES: ${{ steps.changed_files.outputs.all_changed_files }}
41+
# run: echo "$ALL_CHANGED_FILES"
42+
3943
- name: Spell Test
40-
run: echo "$ALL_CHANGED_FILES" | ./scripts/spell_check/check_spelling.sh
44+
run: |
45+
echo "$ALL_CHANGED_FILES" \
46+
echo "$ALL_CHANGED_FILES" | ./scripts/spell_check/check_spelling.sh

0 commit comments

Comments
 (0)