Merge SQS story into main #31
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: Check Pull Request | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| - dev | |
| types: | |
| - opened | |
| - edited | |
| - reopened | |
| - synchronize | |
| - ready_for_review | |
| jobs: | |
| pr-validator: | |
| name: Run Pull Request Checks | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/setup-dotnet@v3 | |
| with: | |
| dotnet-version: | | |
| 8.0 | |
| - name: Check out code | |
| uses: actions/checkout@v3 | |
| with: | |
| path: working-dir | |
| - name: Make LocalStack init script executable | |
| run: chmod +x ./working-dir/compose/start-localstack.sh | |
| - name: Verify Format | |
| run: dotnet format ./working-dir/KeeperData.Api.sln --verify-no-changes --verbosity diagnostic | |
| - name: Run docker-compose | |
| uses: hoverkraft-tech/compose-action@v2.0.1 | |
| with: | |
| compose-file: "./working-dir/docker-compose.yml" | |
| - name: Make Script Executable | |
| run: chmod +x ./working-dir/wait-for-docker-logs.sh | |
| - name: Wait for Localstack | |
| run: ./working-dir/wait-for-docker-logs.sh localstack-emulator "Bootstrapping Complete" 60 | |
| - name: Test | |
| run: dotnet test ./working-dir/KeeperData.Api.sln --logger "GitHubActions;summary.includePassedTests=true;summary.includeSkippedTests=true" --collect:"XPlat Code Coverage" --results-directory ./coverage | |
| - name: install dotnet coverage | |
| run: dotnet tool install --global dotnet-coverage | |
| - name: merge coverage reports | |
| run: dotnet-coverage merge *.cobertura.xml --recursive --output merged.cobertura.xml --output-format cobertura | |
| - name: Code Coverage Report | |
| uses: irongut/CodeCoverageSummary@v1.3.0 | |
| with: | |
| filename: merged.cobertura.xml | |
| badge: true | |
| fail_below_min: false | |
| format: markdown | |
| hide_branch_rate: false | |
| hide_complexity: true | |
| indicators: true | |
| output: both | |
| thresholds: '60 80' | |
| - name: Add Coverage PR Comment | |
| uses: marocchino/sticky-pull-request-comment@v2 | |
| if: github.event_name == 'pull_request' | |
| with: | |
| recreate: true | |
| path: code-coverage-results.md | |
| ## SonarCloud | |
| ## Uncomment to unable SonarCloud scan | |
| ## Requires project to be set up in SonarCloud | |
| ## and the SonarCloud token to be set in the repository secrets | |
| # sonarcloud-scan: | |
| # name: CDP SonarCloud Scan | |
| # uses: ./.github/workflows/sonarcloud.yml | |
| # needs: pr-validator | |
| # secrets: inherit |