We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 29541c2 commit d33587bCopy full SHA for d33587b
1 file changed
.github/workflows/build.yml
@@ -27,11 +27,11 @@ jobs:
27
with:
28
dotnet-version: 9.0.x
29
- name: Restore dependencies
30
- run: dotnet restore
+ run: dotnet restore Source/
31
- name: Build
32
- run: dotnet build --no-restore
+ run: dotnet build Source/ --no-restore
33
- name: Test
34
- run: dotnet test --no-build --verbosity normal --logger:"xunit;LogFilePath=test-results.xml"
+ run: dotnet test Source/ --no-build --verbosity normal --logger:"xunit;LogFilePath=test-results.xml"
35
- name: Print Directory
36
run: |
37
pwd
@@ -42,5 +42,5 @@ jobs:
42
if: always()
43
44
files: |
45
- ./Dove.Blog.Tests/test-results.xml
+ ./Source/Dove.Blog.Tests/test-results.xml
46
0 commit comments