diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5a449ee..50215a2 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -31,17 +31,8 @@ jobs: - name: Restore NuGets run: dotnet restore ${{ env.SOLUTION }} - - name: Build Solution in DEBUG - run: dotnet build --configuration Debug --no-restore ${{ env.SOLUTION }} - - - name: Test in DEBUG - run: dotnet test --configuration Debug --no-build ${{ env.SOLUTION }} - - - name: Build Solution in RELEASE - run: dotnet build --configuration Release --no-restore ${{ env.SOLUTION }} - - name: Test in RELEASE - run: dotnet test --configuration Release --no-build ${{ env.SOLUTION }} + run: dotnet test --configuration Release ${{ env.SOLUTION }} linux: name: Linux @@ -63,18 +54,6 @@ jobs: - name: Restore NuGets run: dotnet restore ${{ env.SOLUTION }} - - name: Build Solution in DEBUG - run: dotnet build --configuration Debug --no-restore ${{ env.SOLUTION }} - - - name: Test in DEBUG with net6.0 - run: dotnet test --configuration Debug --no-build --framework net6.0 ${{ env.SOLUTION }} - - - name: Test in DEBUG with net7.0 - run: dotnet test --configuration Debug --no-build --framework net7.0 ${{ env.SOLUTION }} - - - name: Test in DEBUG with net8.0 - run: dotnet test --configuration Debug --no-build --framework net8.0 ${{ env.SOLUTION }} - - name: Build Solution in RELEASE run: dotnet build --configuration Release --no-restore ${{ env.SOLUTION }}