mirror of
https://github.com/jcreek/CosmicClash.git
synced 2026-09-10 16:04:04 +00:00
17 lines
444 B
YAML
17 lines
444 B
YAML
name: ENet Integration Tests
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
|
|
jobs:
|
|
enet-integration:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 10
|
|
steps:
|
|
- uses: actions/checkout@v7
|
|
- name: Build the pinned Godot test image
|
|
run: docker build --target exporter -t cosmic-clash-enet-tests .
|
|
- name: Run multi-process ENet smoke tests
|
|
run: docker run --rm cosmic-clash-enet-tests bash scripts/verify_enet_integration.sh
|