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 8c7d9e5 commit c003fe3Copy full SHA for c003fe3
.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
+ - name: Run net472 tests
49
+ if: matrix.name == 'Windows'
50
run: dotnet test LibGit2Sharp.sln --configuration Release --no-build --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