mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-05-21 14:17:41 +01:00
0150ce8505
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
71 lines
2.1 KiB
YAML
71 lines
2.1 KiB
YAML
name: TGS Test Suite
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- "project/**"
|
|
- "gh-readonly-queue/master/**"
|
|
- "gh-readonly-queue/project/**"
|
|
paths:
|
|
- ".tgs.yml"
|
|
- ".github/workflows/tgs_test.yml"
|
|
- "dependencies.sh"
|
|
- "code/__DEFINES/tgs.config.dm"
|
|
- "code/__DEFINES/tgs.dm"
|
|
- "code/game/world.dm"
|
|
- "code/modules/tgs/**"
|
|
- "tools/bootstrap/**"
|
|
- "tools/tgs_scripts/**"
|
|
- "tools/tgs_test/**"
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
- "project/**"
|
|
paths:
|
|
- ".tgs.yml"
|
|
- ".github/workflows/tgs_test.yml"
|
|
- "dependencies.sh"
|
|
- "code/__DEFINES/tgs.config.dm"
|
|
- "code/__DEFINES/tgs.dm"
|
|
- "code/game/world.dm"
|
|
- "code/modules/tgs/**"
|
|
- "tools/bootstrap/**"
|
|
- "tools/tgs_scripts/**"
|
|
- "tools/tgs_test/**"
|
|
merge_group:
|
|
branches:
|
|
- master
|
|
env:
|
|
TGS_API_PORT: 5000
|
|
PR_NUMBER: ${{ github.event.number }}
|
|
jobs:
|
|
test_tgs_docker:
|
|
if: ( !contains(github.event.head_commit.message, '[ci skip]') )
|
|
name: Test TGS Docker
|
|
runs-on: ubuntu-24.04
|
|
concurrency:
|
|
group: test_tgs_docker-${{ github.head_ref || github.run_id }}
|
|
cancel-in-progress: true
|
|
services:
|
|
tgs:
|
|
image: tgstation/server
|
|
env:
|
|
Database__DatabaseType: Sqlite
|
|
Database__ConnectionString: Data Source=TGS_TGTest.sqlite3;Mode=ReadWriteCreate
|
|
General__ConfigVersion: 5.0.0
|
|
General__ApiPort: ${{ env.TGS_API_PORT }}
|
|
General__SetupWizardMode: Never
|
|
ports:
|
|
- 5000:5000 #Can't use env here for some reason
|
|
steps:
|
|
- name: Setup dotnet
|
|
uses: actions/setup-dotnet@v5
|
|
with:
|
|
dotnet-version: 8.0.x
|
|
|
|
- name: Checkout Repository
|
|
uses: actions/checkout@v6
|
|
|
|
- name: Test TGS Integration
|
|
run: dotnet run -c Release --project tools/tgs_test ${{ github.repository }} /tgs_instances/tgstation ${{ env.TGS_API_PORT }} ${{ github.event.pull_request.head.sha || github.sha }} ${{ secrets.GITHUB_TOKEN }} ${{ env.PR_NUMBER }}
|