build(deps): bump org.apache.maven.plugins:maven-scm-plugin from 2.0.0-M1 to 2.2.1 #123
Workflow file for this run
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: Publish Test Coverage Report | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| jobs: | |
| publish-code-coverage-report: | |
| name: JAVA | |
| runs-on: ubuntu-latest | |
| if: "! contains(toJSON(github.event.head_commit.message), 'skip ci')" | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v3 | |
| - name: Set up JDK 8 | |
| uses: actions/setup-java@v3 | |
| with: | |
| java-version: '8' | |
| distribution: 'temurin' | |
| cache: maven | |
| - name: Build and Run Tests with Coverage | |
| run: mvn test | |
| - name: SonarQube Scan | |
| if: ${{ github.actor != 'dependabot[bot]' }} | |
| uses: SonarSource/sonarqube-scan-action@v6.0.0 | |
| env: | |
| SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |