From 7bf438e21ec731772838fc845811ec3bec886b4d Mon Sep 17 00:00:00 2001 From: Shannon Klaus Date: Wed, 13 Nov 2024 10:17:23 -0700 Subject: [PATCH] Specify release configuration in test step --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 4fc5c652..c3621943 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -73,7 +73,7 @@ jobs: run: dotnet build --configuration Release --no-restore /p:EnableWindowsTargeting=true - name: Run tests - run: dotnet test --no-build --verbosity normal + run: dotnet test --configuration Release --no-build --verbosity normal - name: Show logs if failed if: ${{ failure() }}