fix: Dynamic XML namespace prefixes for consistent Excel files #120
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 code | |
| on: | |
| pull_request: | |
| jobs: | |
| test: | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, windows-latest] | |
| name: ${{ matrix.os }} | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Checkout source | |
| uses: actions/checkout@v6 | |
| - name: Setup .NET Core SDKs for Windows | |
| if: matrix.os == 'windows-latest' | |
| uses: actions/setup-dotnet@v5 | |
| with: | |
| dotnet-version: | | |
| 2.1.x | |
| 3.1.x | |
| 6.0.x | |
| 8.0.x | |
| - name: Setup .NET Core SDKs on Linux | |
| if: matrix.os == 'ubuntu-latest' | |
| uses: actions/setup-dotnet@v5 | |
| with: | |
| dotnet-version: | | |
| 6.0.x | |
| 8.0.x | |
| - name: Install dependencies | |
| run: dotnet restore | |
| - name: Build solution [Debug] | |
| run: dotnet build --no-restore -c Debug | |
| - name: Test solution [Debug] | |
| run: dotnet test --no-restore --no-build |