We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8a0c1f commit 6695743Copy full SHA for 6695743
1 file changed
.github/workflows/libgit2sharp.yml
@@ -23,5 +23,22 @@ jobs:
23
run: dotnet restore LibGit2Sharp.sln
24
- name: Build
25
run: dotnet build --no-restore LibGit2Sharp.sln
26
+
27
+ test:
28
+ runs-on: ubuntu-20.04
29
30
+ steps:
31
+ - uses: actions/checkout@v2
32
+ with:
33
+ fetch-depth: 0
34
+ - name: Setup .NET
35
+ uses: actions/setup-dotnet@v1
36
37
+ dotnet-version: 3.1.401
38
+ - name: Restore dependencies
39
+ run: dotnet restore LibGit2Sharp.sln
40
+ - name: Build
41
+ run: dotnet build --no-restore LibGit2Sharp.sln
42
43
- name: Test
44
run: dotnet test --no-build --verbosity normal LibGit2Sharp.sln
0 commit comments