From 7aa0f72881e3f39804ef395f2c07bfb448678bf1 Mon Sep 17 00:00:00 2001 From: pointfeev Date: Mon, 9 Aug 2021 05:33:53 -0500 Subject: [PATCH] Update check.yml --- .github/workflows/check.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 4da2400..502e233 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -35,7 +35,9 @@ jobs: run: dotnet restore - name: Build Project - run: dotnet build --no-restore + run: dotnet build --no-restore --configuration $env:Configuration + env: + Configuration: ${{ matrix.configuration }} - name: Test Project run: dotnet test --no-build --verbosity normal