Skip to content

Commit d475af1

Browse files
committed
getting Git statuses for each child dir
1 parent 3038f86 commit d475af1

File tree

1 file changed

+7
-10
lines changed

1 file changed

+7
-10
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -188,16 +188,13 @@ jobs:
188188
- name: Sanity checks
189189
shell: bash
190190
run: |
191-
echo "Dumping current directory:"
192-
ls .
193-
194-
echo ""
195-
echo "Dumping parent directory:"
196-
ls ..
197-
198-
echo ""
199-
echo "Dumping grandparent directory:"
200-
ls ../..
191+
for dir in *; do
192+
pushd "$dir"
193+
echo "Git status for $dir:"
194+
git status
195+
echo ""
196+
popd
197+
done
201198
202199
- name: Test
203200
working-directory: ./smithy-kotlin

0 commit comments

Comments
 (0)