Skip to content

Commit 508657c

Browse files
committed
Fix YAML syntax in validate workflow
1 parent 1a17742 commit 508657c

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

.github/workflows/validate.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,14 @@ jobs:
2626
run: python -c "from encode_connector.server.main import mcp; print('Server module imports OK')"
2727

2828
- name: Validate plugin.json
29-
run: python -c "import json; d=json.load(open('.claude-plugin/plugin.json')); assert 'name' in d; assert 'version' in d; print(f'plugin.json valid: {d[\"name\"]} v{d[\"version\"]}')"
29+
run: |
30+
python -c "
31+
import json
32+
d = json.load(open('.claude-plugin/plugin.json'))
33+
assert 'name' in d
34+
assert 'version' in d
35+
print(f'plugin.json valid: {d[\"name\"]} v{d[\"version\"]}')
36+
"
3037
3138
- name: Validate skill structure
3239
run: |

0 commit comments

Comments
 (0)