Files
Bubberstation/.github/workflows/perform_regular_version_tests.yml
mrmanlikesbtandGitHub f5e471ce1e Adds exclude_from_ci support to unit tests, again (#96545)
## 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
2026-06-22 04:13:45 +02:00

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 }}