Add GitHub CTRF test reporting #322
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: xUnit.net Analyzers CI Build | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - 'rel/**' | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| name: "Build" | |
| runs-on: windows-latest | |
| env: | |
| DOTNET_CLI_WORKLOAD_UPDATE_NOTIFY_DISABLE: true | |
| DOTNET_NOLOGO: true | |
| steps: | |
| - name: Clone source | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| submodules: true | |
| - name: Install .NET SDK | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: | | |
| 8.0.x | |
| 9.0.x | |
| - name: Get .NET information | |
| run: dotnet --info | |
| - name: "Build target: BuildAll" | |
| run: dotnet run --project tools/builder --no-launch-profile -- BuildAll --timing | |
| - name: "Build target: PublishPackages" | |
| env: | |
| PUSH_APIKEY: ${{ secrets.PUSH_APIKEY }} | |
| PUSH_URI: ${{ secrets.PUSH_URI }} | |
| SIGN_APP_ID: ${{ secrets.SIGN_APP_ID }} | |
| SIGN_APP_SECRET: ${{ secrets.SIGN_APP_SECRET }} | |
| SIGN_CERT_NAME: ${{ secrets.SIGN_CERT_NAME }} | |
| SIGN_SUBSCRIPTION: ${{ secrets.SIGN_SUBSCRIPTION }} | |
| SIGN_TENANT: ${{ secrets.SIGN_TENANT }} | |
| SIGN_TIMESTAMP_URI: ${{ secrets.SIGN_TIMESTAMP_URI }} | |
| SIGN_VAULT_URI: ${{ secrets.SIGN_VAULT_URI }} | |
| run: dotnet run --project tools/builder --no-launch-profile -- PublishPackages --timing | |
| - name: "Upload artifact: test" | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: test | |
| path: artifacts/test | |
| compression-level: 9 | |
| if: always() | |
| - name: "Upload artifact: packages" | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: packages | |
| path: artifacts/packages | |
| compression-level: 0 | |
| if: always() | |
| - name: Publish Test Report | |
| uses: ctrf-io/github-test-reporter@v1 | |
| with: | |
| report-path: './artifacts/test/*.ctrf' | |
| summary-report: true | |
| github-report: true | |
| if: always() |