We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a17742 commit 508657cCopy full SHA for 508657c
1 file changed
.github/workflows/validate.yml
@@ -26,7 +26,14 @@ jobs:
26
run: python -c "from encode_connector.server.main import mcp; print('Server module imports OK')"
27
28
- 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\"]}')"
+ 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
+ "
37
38
- name: Validate skill structure
39
run: |
0 commit comments