diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9372b13..dc98712 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -41,8 +41,11 @@ jobs: - name: Build run: dotnet build --configuration Release --no-restore /p:Version=$VERSION - - name: Test - run: dotnet test --configuration Release --no-restore --no-build --verbosity normal + - name: Test net8.0 + run: dotnet test --configuration Release --no-restore --no-build --verbosity normal --framework net8.0 + + - name: Test net9.0 + run: dotnet test --configuration Release --no-restore --no-build --verbosity normal --framework net9.0 - name: Pack nuget packages run: dotnet pack --configuration Release --no-restore --no-build --output nupkgs /p:PackageVersion=$VERSION