Skip to content

Commit 3549b18

Browse files
owineclaude
andcommitted
Fix trailing spaces in lint workflow
Remove trailing whitespace from parallel linting script to pass yamllint validation. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent eac162f commit 3549b18

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/lint.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -110,17 +110,17 @@ jobs:
110110
# Run YAML and Docker Compose linting in parallel
111111
yamllint --strict --config-file .yamllint ./${{ matrix.stack }}/compose.yaml &
112112
YAML_PID=$!
113-
113+
114114
docker compose -f ./${{ matrix.stack }}/compose.yaml config &
115115
DOCKER_PID=$!
116-
116+
117117
# Wait for both processes and capture exit codes
118118
wait $YAML_PID
119119
YAML_EXIT=$?
120-
120+
121121
wait $DOCKER_PID
122122
DOCKER_EXIT=$?
123-
123+
124124
# Report results
125125
if [ $YAML_EXIT -eq 0 ]; then
126126
echo "✅ YAML linting passed for ${{ matrix.stack }}"
@@ -133,7 +133,7 @@ jobs:
133133
else
134134
echo "❌ Docker Compose validation failed for ${{ matrix.stack }}"
135135
fi
136-
136+
137137
# Exit with error if any linting failed
138138
if [ $YAML_EXIT -ne 0 ] || [ $DOCKER_EXIT -ne 0 ]; then
139139
exit 1

0 commit comments

Comments
 (0)