Skip to content

Commit 822b113

Browse files
spboyerCopilot
andcommitted
fix: remove always-skipped waza step from CI workflow
Remove the conditional waza validation step that would always skip since waza is not installed in CI. Document it as a local-only check. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 22f9f4c commit 822b113

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

.github/workflows/eval-unit.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,8 @@ jobs:
3838
working-directory: cli/azd/test/eval
3939
run: npm run test:unit -- --ci
4040

41-
- name: Validate Waza task YAML
42-
working-directory: cli/azd/test/eval
43-
run: |
44-
if command -v waza &>/dev/null; then
45-
npm run waza:validate
46-
else
47-
echo "waza CLI not installed, skipping YAML validation"
48-
fi
41+
# Waza YAML validation is local-only (run `npm run waza:validate` locally).
42+
# waza CLI is not available in CI.
4943

5044
- uses: actions/setup-python@v5
5145
with:

0 commit comments

Comments
 (0)