mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-08-24 21:57:53 +01:00
Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com> Co-authored-by: C.L. <killer65311@gmail.com>
25 lines
488 B
YAML
25 lines
488 B
YAML
name: Run Regular BYOND Version Tests
|
|
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
maps:
|
|
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 }}
|
|
max_required_byond_client: ${{ inputs.max_required_byond_client }}
|