From 54604d7f81cc1b2b35381cd5f28564c79d5b8c05 Mon Sep 17 00:00:00 2001 From: ikpil Date: Mon, 18 Sep 2023 23:17:54 +0900 Subject: [PATCH] feat: dotnet test -c Release --- .github/workflows/dotnet.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index fd47493..bc7c7ac 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -32,7 +32,7 @@ jobs: run: dotnet restore - name: Build - run: dotnet build --configuration Release --no-restore + run: dotnet build -c Release --no-restore - name: Test - run: dotnet test --no-build --verbosity normal + run: dotnet test -c Release --no-build --verbosity normal