Skip to content

Commit 710378a

Browse files
authored
Merge pull request #3 from borghei/fix/yaml-lint-qa-validation
fix(ci): break long domain list line in qa-validation workflow
2 parents e072a09 + 1c06e3c commit 710378a

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/qa-validation.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,11 @@ jobs:
110110
echo "Total Python scripts: $total"
111111
echo ""
112112
echo "By domain:"
113-
for domain in engineering-team engineering marketing-skill product-team project-management ra-qm-team c-level-advisor business-growth finance data-analytics hr-operations sales-success scripts; do
113+
domains="engineering-team engineering marketing-skill product-team"
114+
domains="$domains project-management ra-qm-team c-level-advisor"
115+
domains="$domains business-growth finance data-analytics"
116+
domains="$domains hr-operations sales-success scripts"
117+
for domain in $domains; do
114118
if [ -d "$domain" ]; then
115119
count=$(find "$domain" -name "*.py" -not -path "*/__pycache__/*" | wc -l)
116120
if [ "$count" -gt 0 ]; then

0 commit comments

Comments
 (0)