We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c7d9e5 commit b4165b1Copy full SHA for b4165b1
.github/workflows/ci.yml
@@ -45,6 +45,11 @@ jobs:
45
name: NuGet packages
46
path: bin/Packages/
47
retention-days: 7
48
- - name: Run tests
49
- run: dotnet test LibGit2Sharp.sln --configuration Release --no-build --logger "GitHubActions"
+ - name: Run net472 tests
+ if: matrix.name == 'Windows'
50
+ run: dotnet test LibGit2Sharp.sln --configuration Release --no-build --framework net472 --logger "GitHubActions"
51
+ - name: Run netcoreapp3.1 tests
52
+ run: dotnet test LibGit2Sharp.sln --configuration Release --no-build --framework netcoreapp3.1 --logger "GitHubActions"
53
+ - name: Run net5.0 tests
54
+ run: dotnet test LibGit2Sharp.sln --configuration Release --no-build --framework net5.0 --logger "GitHubActions"
55
0 commit comments