-
Notifications
You must be signed in to change notification settings - Fork 1
173 lines (144 loc) · 4.77 KB
/
Copy pathci.yml
File metadata and controls
173 lines (144 loc) · 4.77 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt -r requirements-dev.txt
- name: Lint with flake8 (fatal errors only)
run: |
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics --exclude=.venv,migrations
- name: Check imports
run: |
python -c "import gateway; print('gateway OK')" || true
python -c "import runtime; print('runtime OK')" || true
typecheck:
runs-on: ubuntu-latest
needs: lint
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt -r requirements-dev.txt
- name: Run mypy
# Non-blocking for now: the codebase is being type-annotated
# incrementally. Per-module strictness lives in pyproject.toml.
run: |
mypy --config-file pyproject.toml || true
docstrings:
runs-on: ubuntu-latest
needs: lint
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
- name: Run interrogate (docstring coverage)
run: |
interrogate -c pyproject.toml runtime gateway hivemind || true
test:
runs-on: ubuntu-latest
needs: lint
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt -r requirements-dev.txt
- name: Run tests with coverage
run: |
python -m pytest tests/ -v --tb=short \
--cov=runtime --cov=gateway --cov=hivemind \
--cov-report=term-missing --cov-report=xml
env:
PYTHONPATH: .
- name: Upload coverage artifact
if: always()
uses: actions/upload-artifact@v4
with:
name: coverage-xml
path: coverage.xml
if-no-files-found: ignore
security:
runs-on: ubuntu-latest
needs: lint
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt -r requirements-dev.txt
- name: Audit dependencies with pip-audit
# Non-blocking: the dependency tree includes upstream advisories
# we cannot patch ourselves; this surfaces them in CI logs.
run: |
pip-audit --strict || true
- name: Bandit security scan
run: |
bandit -r runtime/ gateway/ hivemind/ -ll --skip B101,B603,B607 -f txt || true
- name: Check for hardcoded secrets
run: |
grep -rn "YOUR_" --include="*.json" . | grep -v ".example" | grep -v "node_modules" && echo "WARNING: Possible non-example config with placeholder keys" || echo "No hardcoded secrets found"
docker:
runs-on: ubuntu-latest
needs: [lint, test]
steps:
- uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build image
uses: docker/build-push-action@v6
with:
context: .
push: false
load: true
tags: opnmatrx-gateway:ci
cache-from: type=gha
cache-to: type=gha,mode=max
- name: Smoke test container
# Boot the gateway, hit /health, and make sure it returns 200.
run: |
set -e
cid=$(docker run -d --rm -p 18790:18790 opnmatrx-gateway:ci)
trap "docker kill $cid >/dev/null 2>&1 || true" EXIT
# Give the gateway a few seconds to bind.
for i in 1 2 3 4 5 6 7 8 9 10; do
if curl -fsS http://localhost:18790/health >/dev/null; then
echo "Gateway responded on attempt $i"
exit 0
fi
sleep 2
done
echo "Gateway did not respond to /health within timeout"
docker logs $cid || true
exit 1