We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9be3278 commit 83b71e0Copy full SHA for 83b71e0
1 file changed
.github/workflows/dotnet.yml
@@ -14,19 +14,16 @@ jobs:
14
- name: Checkout
15
uses: actions/checkout@v3
16
17
- - name: List repo contents
18
- run: ls -R
19
-
20
- name: Setup .NET
21
uses: actions/setup-dotnet@v3
22
with:
23
dotnet-version: '8.0.x'
24
25
- name: Restore
26
- run: dotnet restore ./ByteFlow.sln
+ run: dotnet restore ./src/ByteFlow/ByteFlow.sln
27
28
- name: Build
29
- run: dotnet build ./ByteFlow.sln --no-restore --configuration Release
+ run: dotnet build ./src/ByteFlow/ByteFlow.sln --no-restore --configuration Release
30
31
- name: Test with coverage
32
- run: dotnet test ./ByteFlow.sln --no-build --configuration Release --collect:"XPlat Code Coverage"
+ run: dotnet test ./src/ByteFlow/ByteFlow.sln --no-build --configuration Release --collect:"XPlat Code Coverage"
0 commit comments