Some checks failed
Architecture Lint / Linter Tests (pull_request) Failing after 1m28s
Architecture Lint / Lint Repository (pull_request) Has been skipped
Smoke Test / smoke (pull_request) Failing after 1m26s
Validate Config / YAML Lint (pull_request) Failing after 16s
Validate Config / JSON Validate (pull_request) Successful in 15s
Validate Config / Shell Script Lint (pull_request) Failing after 43s
PR Checklist / pr-checklist (pull_request) Successful in 3m48s
Validate Config / Python Syntax & Import Check (pull_request) Failing after 1m9s
Validate Config / Python Test Suite (pull_request) Has been skipped
Validate Config / Cron Syntax Check (pull_request) Successful in 11s
Validate Config / Deploy Script Dry Run (pull_request) Successful in 11s
Validate Config / Playbook Schema Validation (pull_request) Successful in 18s
45 lines
1.2 KiB
YAML
45 lines
1.2 KiB
YAML
name: Notebook CI
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- 'notebooks/**'
|
|
pull_request:
|
|
paths:
|
|
- 'notebooks/**'
|
|
|
|
jobs:
|
|
notebook-smoke:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup Python
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.12'
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
pip install papermill jupytext nbformat ipykernel
|
|
python -m ipykernel install --user --name python3
|
|
|
|
- name: Execute system health notebook
|
|
run: |
|
|
papermill notebooks/agent_task_system_health.ipynb /tmp/output.ipynb \
|
|
-p threshold 0.5 \
|
|
-p hostname ci-runner
|
|
|
|
- name: Verify output has results
|
|
run: |
|
|
python -c "
|
|
import json
|
|
nb = json.load(open('/tmp/output.ipynb'))
|
|
code_cells = [c for c in nb['cells'] if c['cell_type'] == 'code']
|
|
outputs = [c.get('outputs', []) for c in code_cells]
|
|
total_outputs = sum(len(o) for o in outputs)
|
|
assert total_outputs > 0, 'Notebook produced no outputs'
|
|
print(f'Notebook executed successfully with {total_outputs} output(s)')
|
|
"
|