Skip to content

Commit c595b45

Browse files
ci: install pyyaml in validate-manifest workflow
scripts/skills.py grew `import yaml` in db9b2e5 to parse SKILL.md frontmatter, but the workflow doesn't pip install it, so validate has been failing with ModuleNotFoundError on every push since. Co-authored-by: Isaac
1 parent 10baa35 commit c595b45

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

.github/workflows/validate-manifest.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,8 @@ jobs:
2525
with:
2626
python-version: '3.11'
2727

28+
- name: Install Python deps
29+
run: pip install pyyaml
30+
2831
- name: Validate manifest is up to date
2932
run: python3 scripts/skills.py validate

0 commit comments

Comments
 (0)