Skip to content

Commit 9be3278

Browse files
Update dotnet.yml
1 parent 118a230 commit 9be3278

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/dotnet.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff 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"

0 commit comments

Comments
 (0)