Build(deps): Bump Microsoft.AspNetCore.Mvc.Testing from 9.0.1 to 9.0.4 #834
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 and test | |
| on: | |
| push: | |
| paths-ignore: | |
| - '**.md' | |
| branches: | |
| - main | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| paths-ignore: | |
| - '**.md' | |
| concurrency: | |
| group: ${{ github.head_ref || github.sha }} | |
| cancel-in-progress: true | |
| env: | |
| GITHUB_WORKSPACE: ${{ github.workspace }} | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any | |
| SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
| SONAR_DOTNET_ENABLE_CONCURRENT_EXECUTION: true | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'microsoft' # See 'Supported distributions' for available options | |
| java-version: '17' | |
| - name: Setup dotnet | |
| uses: actions/setup-dotnet@v4.3.0 | |
| with: | |
| dotnet-version: '9.x' | |
| - name: Install dotnet-sonarscanner | |
| run: | | |
| dotnet tool install --global dotnet-sonarscanner | |
| - name: Install dotnet-coverage | |
| run: | | |
| dotnet tool install --global dotnet-coverage | |
| - name: Cache NuGet Packages | |
| uses: actions/cache@v4 | |
| with: | |
| key: nuget-${{ hashFiles('Directory.Packages.props') }} | |
| path: ~/.nuget/packages | |
| - name: Build the project, run all tests and publish to SonarCloud | |
| run: | | |
| dotnet sonarscanner begin \ | |
| /k:"yanpitangui_dotnet-api-boilerplate" \ | |
| /o:"yanpitangui" \ | |
| /d:sonar.token="$SONAR_TOKEN" \ | |
| /d:sonar.host.url="https://sonarcloud.io" \ | |
| /d:sonar.cs.vscoveragexml.reportsPaths=coverage.xml | |
| dotnet build WebApiBoilerplate.sln --no-incremental | |
| dotnet-coverage collect 'dotnet test WebApiBoilerplate.sln' -f xml -o 'coverage.xml' | |
| dotnet sonarscanner end /d:sonar.token="$SONAR_TOKEN" |