We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b17cb1 commit 3fb8163Copy full SHA for 3fb8163
1 file changed
.github/workflows/ci.yml
@@ -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
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