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 0282f0e commit e7a7b49Copy full SHA for e7a7b49
.github/workflows/dotnet.yml
@@ -38,8 +38,11 @@ jobs:
38
- name: Build
39
run: dotnet build Build.csproj --no-restore -c Release
40
41
- - name: Test
42
- run: dotnet test Build.csproj --no-build --verbosity normal -c Release -f net6.0 --filter FullyQualifiedName!~Integration
+ - name: Test .NET 8
+ run: dotnet test Build.csproj --no-build --verbosity normal -c Release -f net8.0 --filter FullyQualifiedName!~Integration
43
+
44
+ - name: Test .NET 9
45
+ run: dotnet test Build.csproj --no-build --verbosity normal -c Release -f net9.0 --filter FullyQualifiedName!~Integration
46
47
- name: Pack
48
if: ${{ success() && !github.base_ref }}
0 commit comments