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 3038f86 commit d475af1Copy full SHA for d475af1
.github/workflows/continuous-integration.yml
@@ -188,16 +188,13 @@ jobs:
188
- name: Sanity checks
189
shell: bash
190
run: |
191
- echo "Dumping current directory:"
192
- ls .
193
-
194
- echo ""
195
- echo "Dumping parent directory:"
196
- ls ..
197
198
199
- echo "Dumping grandparent directory:"
200
- ls ../..
+ for dir in *; do
+ pushd "$dir"
+ echo "Git status for $dir:"
+ git status
+ echo ""
+ popd
+ done
201
202
- name: Test
203
working-directory: ./smithy-kotlin
0 commit comments