Files
deusdata--codebase-memory-mcp/.github/workflows/nightly-soak.yml
T
wehub-resource-sync 41cb1c0170
OpenSSF Scorecard / scorecard (push) Failing after 0s
DCO / dco (push) Failing after 0s
CodeQL SAST / analyze (push) Failing after 1s
Deploy Pages / deploy (push) Failing after 1s
chore: import upstream snapshot with attribution
2026-07-13 12:28:05 +08:00

23 lines
492 B
YAML

# Weekly soak test: 4h sustained load + ASan leak detection
name: Nightly Soak
on:
schedule:
- cron: '0 2 * * 0' # Every Sunday at 2am UTC
workflow_dispatch:
inputs:
duration_minutes:
description: 'Soak duration in minutes (default: 240 = 4h)'
type: number
default: 240
permissions:
contents: read
jobs:
soak:
uses: ./.github/workflows/_soak.yml
with:
duration_minutes: ${{ inputs.duration_minutes || 240 }}
run_asan: true