We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4454853 commit e9a6065Copy full SHA for e9a6065
1 file changed
.github/workflows/release.yml
@@ -41,8 +41,11 @@ jobs:
41
- name: Build
42
run: dotnet build --configuration Release --no-restore /p:Version=$VERSION
43
44
- - name: Test
45
- 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
46
+
47
+ - name: Test net9.0
48
+ run: dotnet test --configuration Release --no-restore --no-build --verbosity normal --framework net9.0
49
50
- name: Pack nuget packages
51
run: dotnet pack --configuration Release --no-restore --no-build --output nupkgs /p:PackageVersion=$VERSION
0 commit comments