-
Notifications
You must be signed in to change notification settings - Fork 0
23 lines (21 loc) · 789 Bytes
/
Copy pathci.yml
File metadata and controls
23 lines (21 loc) · 789 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
name: CI
on:
pull_request:
push:
branches: [main]
jobs:
smoke:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Validate JSON manifests
run: |
python3 -m json.tool .agents/plugins/marketplace.json > /dev/null
python3 -m json.tool .claude-plugin/marketplace.json > /dev/null
python3 -m json.tool .claude-plugin/plugin.json > /dev/null
python3 -m json.tool plugins/patchman/.codex-plugin/plugin.json > /dev/null
python3 -m json.tool .codex/hooks.json > /dev/null
- name: Run repository shape test
run: bash tests/test_repository_shape.sh
- name: Run manifest smoke test
run: bash tests/manifest_smoke_test.sh