fix: Dynamic XML namespace prefixes for consistent Excel files #97
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Test documentation | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| buildcheck: | |
| runs-on: windows-latest | |
| steps: | |
| - name: Checkout source | |
| uses: actions/checkout@v4 | |
| - name: Setup .NET Core SDKs | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: 8.0.x | |
| - name: Add msbuild to PATH | |
| uses: microsoft/setup-msbuild@v1.1 | |
| 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 |