We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2930d00 commit 29541c2Copy full SHA for 29541c2
1 file changed
.github/workflows/build.yml
@@ -27,11 +27,16 @@ jobs:
27
with:
28
dotnet-version: 9.0.x
29
- name: Restore dependencies
30
- run: dotnet restore Source/Dove.Blog.slnx
+ run: dotnet restore
31
- name: Build
32
- run: dotnet build Source/Dove.Blog.slnx --no-restore
+ run: dotnet build --no-restore
33
- name: Test
34
- run: dotnet test Source/Dove.Blog.slnx --no-build --logger:"xunit;LogFilePath=test-results.xml"
+ 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/
40
- name: Publish test results
41
uses: EnricoMi/publish-unit-test-result-action@v2
42
if: always()
0 commit comments