Bump xunit.runner.visualstudio from 2.8.2 to 3.0.2 #166
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: pr_validation | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - dev | |
| - main | |
| pull_request: | |
| branches: | |
| - master | |
| - dev | |
| - main | |
| jobs: | |
| test: | |
| name: Test-${{matrix.os}} | |
| runs-on: ${{matrix.os}} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, windows-latest] | |
| steps: | |
| - name: "Checkout" | |
| uses: actions/checkout@v4.1.1 | |
| with: | |
| lfs: true | |
| fetch-depth: 0 | |
| - name: "Install .NET SDK" | |
| uses: actions/setup-dotnet@v4.0.0 | |
| with: | |
| global-json-file: "./global.json" | |
| - name: "Update release notes" | |
| shell: pwsh | |
| run: | | |
| ./build.ps1 | |
| - name: "dotnet build" | |
| run: dotnet build -c Release | |
| - name: "dotnet test" | |
| run: dotnet test -c Release | |
| - name: "dotnet pack" | |
| run: dotnet pack -c Release |