From 86464ca989146fa2fd0932427cb8bbef7e80769d Mon Sep 17 00:00:00 2001 From: Tayrtahn Date: Thu, 16 Jul 2026 06:38:23 -0400 Subject: [PATCH] Test building content master against engine in release configuration (#6557) --- .github/workflows/test-content.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test-content.yml b/.github/workflows/test-content.yml index 2c751ffd98..2bdd0c0629 100644 --- a/.github/workflows/test-content.yml +++ b/.github/workflows/test-content.yml @@ -40,7 +40,9 @@ jobs: run: cp RobustToolbox/global.json . - name: Install dependencies run: dotnet restore - - name: Build + - name: Build (Release) + run: dotnet build --configuration Release --no-restore /m + - name: Build (Debug) run: dotnet build --configuration DebugOpt --no-restore /m - name: Content.Tests shell: pwsh