-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (30 loc) · 937 Bytes
/
ci.yml
File metadata and controls
35 lines (30 loc) · 937 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: CI
on:
push:
branches: [main]
pull_request:
jobs:
shellcheck-and-smoke:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: ShellCheck
uses: ludeeus/action-shellcheck@2.0.0
- name: Verify expected files exist
run: |
test -f README.md
test -f README.zh-CN.md
test -f docs/architecture.md
test -f docs/architecture.zh-CN.md
test -f scripts/install-qmd.sh
test -f scripts/bootstrap-collections.sh
test -f scripts/start-qmd-mcp.sh
test -f templates/openclaw.jsonc
test -f templates/qmd.env.example
test -f openclaw-custom-skills/qmd-retrieval/SKILL.md
- name: Basic shell syntax check
run: |
bash -n scripts/install-qmd.sh
bash -n scripts/bootstrap-collections.sh
bash -n scripts/start-qmd-mcp.sh