mirror of
https://github.com/jcreek/CosmicClash.git
synced 2026-09-10 16:04:04 +00:00
27 lines
593 B
YAML
27 lines
593 B
YAML
name: Multiplayer Chaos Recovery
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
pull_request:
|
|
paths:
|
|
- Dockerfile
|
|
- Makefile
|
|
- compose.chaos-smoke.yml
|
|
- server/cmd/maintenance/**
|
|
- server/store/**
|
|
- server/migrations/**
|
|
- scripts/verify_chaos_recovery.sh
|
|
- .github/workflows/multiplayer-chaos.yml
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
api-restart-recovery:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 15
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Verify API restart and stalled-allocation recovery
|
|
run: make verify-chaos-recovery
|