diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 2b4015e..c9194c4 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -30,7 +30,6 @@ jobs: Build: runs-on: ubuntu-latest env: - buildConfiguration: 'Release' DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1 steps: @@ -51,15 +50,7 @@ jobs: run: dotnet restore - name: Build - run: > - dotnet build - --configuration $buildConfiguration - --no-restore + run: dotnet build --configuration Release --no-restore - name: Test - run: > - dotnet test - --configuration $buildConfiguration - --no-build - --verbosity normal - --collect "Code coverage" + run: dotnet test --configuration Release --no-build diff --git a/.github/workflows/preview.yml b/.github/workflows/preview.yml index 7010395..1c9bc41 100644 --- a/.github/workflows/preview.yml +++ b/.github/workflows/preview.yml @@ -66,15 +66,10 @@ jobs: run: dotnet restore - name: Build - run: dotnet build--configuration Release --no-restore + run: dotnet build --configuration Release --no-restore - name: Test - run: > - dotnet test - --configuration Release - --no-build - --verbosity normal - --collect "Code coverage" + run: dotnet test --configuration Release --no-build - name: Pack run: > diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0d3f13b..519a64e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -69,12 +69,7 @@ jobs: run: dotnet build --configuration Release --no-restore - name: Test - run: > - dotnet test - --configuration Release - --no-build - --verbosity normal - --collect "Code coverage" + run: dotnet test --configuration Release --no-build - name: Pack run: >