forked from rimland/EPPlus
-
Notifications
You must be signed in to change notification settings - Fork 7
33 lines (31 loc) · 947 Bytes
/
Copy pathtest-documentation.yml
File metadata and controls
33 lines (31 loc) · 947 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: Test documentation
on:
pull_request:
jobs:
buildcheck:
runs-on: windows-latest
steps:
- name: Checkout source
uses: actions/checkout@v6
- name: Setup .NET Core SDKs
uses: actions/setup-dotnet@v5
with:
global-json-file: global.json
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v3
with:
msbuild-architecture: x64
- name: Install SHFB
uses: Shane32/setup-SHFB@ffe9d55917ef7f63203c35528d53844409a1a502
with:
version: 2022.8.14.1
- name: Build project
run: dotnet build -c Release
- name: Build documentation
working-directory: Doc
run: msbuild EPPlusDoc.sln -t:rebuild -verbosity:minimal -property:Configuration=Release
# - name: Upload build artifacts
# uses: actions/upload-artifact@v3
# with:
# name: Documentation
# path: Doc/Help