Skip to content

Auto-heal MCP failures and refresh TUI MCP status #30

Auto-heal MCP failures and refresh TUI MCP status

Auto-heal MCP failures and refresh TUI MCP status #30

name: alpha-reliability
on:
pull_request:
push:
branches:
- main
tags:
- "v*"
- "alpha-*"
workflow_dispatch:
jobs:
reliability:
name: reliability-${{ matrix.os }}
runs-on: ${{ matrix.os }}
timeout-minutes: 120
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Bun
uses: ./.github/actions/setup-bun
- name: Install dependencies
run: bun install
shell: bash
- name: Run alpha reliability suite
shell: bash
run: |
bun run --cwd packages/zee src/index.ts reliability run \
--profile alpha \
--json \
--artifact-dir artifacts/reliability/${{ runner.os }}
env:
CI: true
ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
GOOGLE_API_KEY: ${{ secrets.GOOGLE_API_KEY }}
ZEE_GATEWAY_TOKEN: ${{ secrets.ZEE_GATEWAY_TOKEN }}
ZEE_GATEWAY_PASSWORD: ${{ secrets.ZEE_GATEWAY_PASSWORD }}
QDRANT_URL: ${{ secrets.QDRANT_URL }}
QDRANT_API_KEY: ${{ secrets.QDRANT_API_KEY }}
- name: Upload reliability artifacts
if: always()
uses: actions/upload-artifact@v4
with:
name: alpha-reliability-${{ matrix.os }}
path: artifacts/reliability
if-no-files-found: warn