Skip to content

Commit

Permalink
Refactor: for -> while
Browse files Browse the repository at this point in the history
  • Loading branch information
Guri999 committed Jan 16, 2025
1 parent 10023ce commit 35b97aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/dev-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
if: env.any_changed == 'true'
run: |
chmod +x gradlew
for FILE in ${{ env.TEST_FILES }}; do
echo "$TEST_FILES" | while read FILE; do
MODULE=$(echo "$FILE" | cut -d' ' -f1)
TEST_CLASS=$(echo "$FILE" | cut -d' ' -f2)
MODULE=$(echo "$MODULE" | sed 's|\.|:|g')
Expand Down

0 comments on commit 35b97aa

Please sign in to comment.