Skip to content

Commit d4d8992

Browse files
authored
Fix build testing (#168)
1 parent abbbbc8 commit d4d8992

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,14 @@ jobs:
2222
10.0.x
2323
- uses: actions/checkout@v5
2424
- name: Restore
25-
run: dotnet restore --nologo src
25+
run: dotnet restore --nologo
26+
working-directory: src
2627
- name: Build
27-
run: dotnet build --no-restore --nologo --configuration Release src
28+
run: dotnet build --no-restore --nologo --configuration Release
29+
working-directory: src
2830
- name: Test
29-
run: dotnet test --no-build --configuration Release src
31+
run: dotnet test --no-build --configuration Release
32+
working-directory: src
3033

3134
code-style:
3235
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)