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