From ca66a8747f2e4eb1c135a42c86b56c106accd8bf Mon Sep 17 00:00:00 2001 From: Serge K Date: Sun, 23 Jun 2024 23:52:12 +0700 Subject: [PATCH] ci: msbuild params --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0314a5d..cd67a1b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,10 +25,10 @@ jobs: run: dotnet restore - name: Build - run: dotnet build --no-restore -c Release -p:ContinuousIntegrationBuild=true + run: dotnet build --no-restore -c Release /p:ContinuousIntegrationBuild=true - name: Run tests - run: dotnet test --no-build -c Release -e:CoverletOutputFormat=opencover + run: dotnet test --no-build -c Release /e:CoverletOutputFormat=opencover - name: Publish to Codecov uses: codecov/codecov-action@v4