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 e7a4e36 commit 0e957b7Copy full SHA for 0e957b7
.github/workflows/build-eud-on-pull-request.yml
@@ -0,0 +1,23 @@
1
+name: build eud on pull request
2
+
3
+on:
4
+ pull_request:
5
6
+jobs:
7
+ build-site:
8
+ runs-on: windows-latest
9
+ steps:
10
+ - name: Checkout branch
11
+ uses: actions/checkout@v3
12
13
+ - name: Check status
14
+ run: git status
15
16
+ - name: Download docfx
17
+ run: curl https://github.com/dotnet/docfx/releases/download/v2.59.2/docfx.zip -L -o ../docfx.zip
18
19
+ - name: Expand docfx
20
+ run: Expand-Archive ../docfx.zip -DestinationPath ../docfx
21
22
+ - name: Build site with docfx
23
+ run: ../docfx/docfx.exe build docfx.json --warningsAsErrors
0 commit comments