File tree Expand file tree Collapse file tree 1 file changed +18
-16
lines changed Expand file tree Collapse file tree 1 file changed +18
-16
lines changed Original file line number Diff line number Diff line change @@ -11,21 +11,23 @@ jobs:
11
11
runs-on : windows-2019
12
12
13
13
steps :
14
- - uses : actions/checkout@v3
15
-
16
- - name : Setup .NET
17
- uses : actions/setup-dotnet@v3
18
- with :
19
- dotnet-version : 6.0.x
20
-
21
- - name : Setup NuGet
22
- uses : NuGet/setup-nuget@v1.2.0
23
-
24
- - name : Restore dependencies
25
- run : dotnet restore
14
+ - uses : actions/checkout@v4
15
+ with :
16
+ fetch-depth : 0
17
+
18
+ - name : Setup .NET
19
+ uses : actions/setup-dotnet@v4
20
+ with :
21
+ dotnet-version : 6.0.x
22
+
23
+ - name : Setup NuGet
24
+ uses : NuGet/setup-nuget@v2.0.1
25
+
26
+ - name : Restore dependencies
27
+ run : dotnet restore
26
28
27
- - name : Build
28
- run : dotnet build --configuration Release
29
+ - name : Build
30
+ run : dotnet build --configuration Release
29
31
30
- - name : Test
31
- run : dotnet test --logger "trx;LogFileName=test-results.trx" || true
32
+ - name : Test
33
+ run : dotnet test --logger "trx;LogFileName=test-results.trx" || true
You can’t perform that action at this time.
0 commit comments