Skip to content

Commit 83b71e0

Browse files
Update dotnet.yml
1 parent 9be3278 commit 83b71e0

1 file changed

Lines changed: 3 additions & 6 deletions

File tree

.github/workflows/dotnet.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,16 @@ jobs:
1414
- name: Checkout
1515
uses: actions/checkout@v3
1616

17-
- name: List repo contents
18-
run: ls -R
19-
2017
- name: Setup .NET
2118
uses: actions/setup-dotnet@v3
2219
with:
2320
dotnet-version: '8.0.x'
2421

2522
- name: Restore
26-
run: dotnet restore ./ByteFlow.sln
23+
run: dotnet restore ./src/ByteFlow/ByteFlow.sln
2724

2825
- name: Build
29-
run: dotnet build ./ByteFlow.sln --no-restore --configuration Release
26+
run: dotnet build ./src/ByteFlow/ByteFlow.sln --no-restore --configuration Release
3027

3128
- name: Test with coverage
32-
run: dotnet test ./ByteFlow.sln --no-build --configuration Release --collect:"XPlat Code Coverage"
29+
run: dotnet test ./src/ByteFlow/ByteFlow.sln --no-build --configuration Release --collect:"XPlat Code Coverage"

0 commit comments

Comments
 (0)