File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -13,17 +13,18 @@ jobs:
1313 runs-on : ubuntu-latest
1414 steps :
1515 - uses : actions/checkout@v2
16- with :
17- ref : v8.0
1816 - name : Setup .NET
1917 uses : actions/setup-dotnet@v1
2018 with :
2119 dotnet-version : 3.1.x
22- - name : Get Directory
23- run : pwd
20+ - name : Get Build Information
21+ run : |
22+ pwd
23+ dotnet --info
24+ dotnet --version
2425 - name : Restore dependencies
2526 run : dotnet restore
2627 - name : Build
2728 run : dotnet build --no-restore
2829 - name : Test
29- run : dotnet test --no-build --verbosity normal
30+ run : dotnet test --no-build --verbosity normal
Original file line number Diff line number Diff line change @@ -13,17 +13,18 @@ jobs:
1313 runs-on : windows-latest
1414 steps :
1515 - uses : actions/checkout@v2
16- with :
17- ref : v8.0
1816 - name : Setup .NET
1917 uses : actions/setup-dotnet@v1
2018 with :
2119 dotnet-version : 3.1.x
22- - name : Get Directory
23- run : pwd
20+ - name : Get Build Information
21+ run : |
22+ pwd
23+ dotnet --info
24+ dotnet --version
2425 - name : Restore dependencies
2526 run : dotnet restore
2627 - name : Build
2728 run : dotnet build --no-restore
2829 - name : Test
29- run : dotnet test --no-build --verbosity normal
30+ run : dotnet test --no-build --verbosity normal
You can’t perform that action at this time.
0 commit comments