We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14859b4 commit 74be3b3Copy full SHA for 74be3b3
1 file changed
.github/workflows/verification.yml
@@ -67,6 +67,7 @@ jobs:
67
- name: 🧪 Run unit tests (sync)
68
run: |
69
dotnet test --filter Category!=async -c release
70
+
71
- name: 📛 Upload hang- and crash-dumps on test failure
72
if: failure()
73
uses: actions/upload-artifact@v3
@@ -108,7 +109,7 @@ jobs:
108
109
dotnet restore ${{ github.workspace }}/TemplateTestMstest --source https://api.nuget.org/v3/index.json --source ${{ github.workspace }}/packages
110
dotnet test ${{ github.workspace }}/TemplateTestMstest
111
- # DocFx only works well on Windows currently
112
- - name: 📄 Build documentation
113
- if: matrix.os == 'windows-latest'
114
- run: dotnet build docs/site/
+ - name: 📄 Building docs
+ run: |
+ dotnet tool update -g docfx --version 2.67.0
115
+ docfx docs/site/docfx.json
0 commit comments