Skip to content

Commit 7e353de

Browse files
authored
Fix working directory for build step in dotnet.yml (#5)
* Fix working directory for build and test steps in dotnet.yml * Update dotnet.yml * Update dotnet.yml
1 parent 8d85555 commit 7e353de

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/dotnet.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,10 @@ jobs:
2525
dotnet-version: 8.0.x
2626
- name: Restore dependencies
2727
run: dotnet restore --locked-mode
28+
working-directory: source
2829
- name: Build
2930
run: dotnet build --no-restore
30-
- name: Test
31-
run: dotnet test --no-build --verbosity normal
31+
working-directory: source
32+
# - name: Test
33+
# run: dotnet test --no-build --verbosity normal
34+
# working-directory: source

0 commit comments

Comments
 (0)