update CompatibilitySuppressions.xml file #55
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: build-windows | |
| on: | |
| push: | |
| paths-ignore: | |
| - "**.md" | |
| - LICENSE | |
| branches: | |
| - "master" | |
| pull_request: | |
| paths-ignore: | |
| - "**.md" | |
| - LICENSE | |
| branches: | |
| - master | |
| jobs: | |
| build-and-test: | |
| runs-on: windows-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| - name: Setup Testspace | |
| uses: testspace-com/setup-testspace@v1 | |
| with: | |
| domain: ${{github.repository_owner}} | |
| - name: Install .NET 8 | |
| uses: actions/setup-dotnet@v1 | |
| with: | |
| dotnet-version: "8.0.x" | |
| - name: Install .NET 9 | |
| uses: actions/setup-dotnet@v1 | |
| with: | |
| dotnet-version: "9.0.x" | |
| - name: Build | |
| run: .\build.ps1 --target build | |
| - name: Run Tests | |
| run: .\build.ps1 --target tests --exclusive | |
| - name: Push result to Testspace server | |
| run: | | |
| testspace [windows]**/*.trx | |
| if: always() |