From b8dd5cc8bf91495f0a470458463b03ecba51a7b0 Mon Sep 17 00:00:00 2001 From: Oliver Booth Date: Thu, 21 Apr 2022 12:32:11 +0100 Subject: [PATCH] [github actions] dotnet test Release (not Debug) --- .github/workflows/dotnet.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 032e4df..0948312 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -30,4 +30,4 @@ jobs: run: dotnet build --no-restore --configuration Release - name: Test - run: dotnet test --no-build --verbosity normal + run: dotnet test --no-build --verbosity normal --configuration Release