Skip to content

Commit 29541c2

Browse files
committed
Getting test result published on Github
1 parent 2930d00 commit 29541c2

1 file changed

Lines changed: 8 additions & 3 deletions

File tree

.github/workflows/build.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,16 @@ jobs:
2727
with:
2828
dotnet-version: 9.0.x
2929
- name: Restore dependencies
30-
run: dotnet restore Source/Dove.Blog.slnx
30+
run: dotnet restore
3131
- name: Build
32-
run: dotnet build Source/Dove.Blog.slnx --no-restore
32+
run: dotnet build --no-restore
3333
- name: Test
34-
run: dotnet test Source/Dove.Blog.slnx --no-build --logger:"xunit;LogFilePath=test-results.xml"
34+
run: dotnet test --no-build --verbosity normal --logger:"xunit;LogFilePath=test-results.xml"
35+
- name: Print Directory
36+
run: |
37+
pwd
38+
ls -la ./
39+
# ls -la ./TrinityContinuumWeb.Tests/
3540
- name: Publish test results
3641
uses: EnricoMi/publish-unit-test-result-action@v2
3742
if: always()

0 commit comments

Comments
 (0)