mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-21 12:08:55 +01:00
## About The Pull Request When I was working on #96368 I was unaware of the following: <img width="584" height="294" alt="image" src="https://github.com/user-attachments/assets/a6578a46-04e8-4316-a2d6-5aaadffbdea6" /> So I'm fixing it. ## Why It's Good For The Game Sorry downstreams ## Changelog No user facing changes
29 lines
593 B
YAML
29 lines
593 B
YAML
name: Run Regular BYOND Version Tests
|
|
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
maps:
|
|
required: true
|
|
type: string
|
|
map_config:
|
|
required: true
|
|
type: string
|
|
max_required_byond_client:
|
|
required: true
|
|
type: string
|
|
|
|
jobs:
|
|
run:
|
|
uses: ./.github/workflows/run_integration_tests.yml
|
|
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
map: ${{ fromJSON(inputs.maps).paths }}
|
|
|
|
with:
|
|
map: ${{ matrix.map }}
|
|
map_config: ${{ inputs.map_config }}
|
|
max_required_byond_client: ${{ inputs.max_required_byond_client }}
|