Skip to content

Commit 3fb8163

Browse files
committed
Update defect-analysis
1 parent 2b17cb1 commit 3fb8163

1 file changed

Lines changed: 33 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
9+
jobs:
10+
validate:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout
14+
uses: actions/checkout@v4
15+
16+
- name: Setup Python
17+
uses: actions/setup-python@v5
18+
with:
19+
python-version: "3.12"
20+
21+
- name: Setup Node
22+
uses: actions/setup-node@v4
23+
with:
24+
node-version: "22"
25+
26+
- name: Validate Python syntax
27+
run: python -m py_compile scripts/*.py
28+
29+
- name: Validate local skill discovery
30+
run: npx skills add . --list
31+
32+
- name: Run regression suite
33+
run: python scripts/run_regression.py

0 commit comments

Comments
 (0)