File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -14,19 +14,19 @@ jobs:
1414 - name : Checkout
1515 uses : actions/checkout@v3
1616
17+ - name : List repo contents
18+ run : ls -R
19+
1720 - name : Setup .NET
1821 uses : actions/setup-dotnet@v3
1922 with :
2023 dotnet-version : ' 8.0.x'
2124
2225 - name : Restore
23- run : dotnet restore ByteFlow.sln
24- working-directory : .
26+ run : dotnet restore ./ByteFlow.sln
2527
2628 - name : Build
27- run : dotnet build ByteFlow.sln --no-restore --configuration Release
28- working-directory : .
29+ run : dotnet build ./ByteFlow.sln --no-restore --configuration Release
2930
3031 - name : Test with coverage
31- run : dotnet test ByteFlow.sln --no-build --configuration Release --collect:"XPlat Code Coverage"
32- working-directory : .
32+ run : dotnet test ./ByteFlow.sln --no-build --configuration Release --collect:"XPlat Code Coverage"
You can’t perform that action at this time.
0 commit comments