diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7f35f55..4491a76 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,14 +21,11 @@ jobs: with: fetch-depth: 0 - - name: Restore - 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 /p:CollectCoverage=true /p:CoverletOutputFormat=opencover + run: dotnet test --no-build -c Release -p:CollectCoverage=true -e:CoverletOutputFormat=opencover - name: Publish to Codecov uses: codecov/codecov-action@v4