chore(deps-dev): Bump org.assertj:assertj-core from 3.27.1 to 3.27.2 … #526
This file contains 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: SonarCloud analysis | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
sonarcloud: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
with: | |
# Disabling shallow clone is recommended for improving relevancy of reporting | |
fetch-depth: 0 | |
- name: Set up cache for ~./m2/repository | |
uses: actions/[email protected] | |
with: | |
path: ~/.m2/repository | |
key: pit-stryker-dashboard-reporter-${{ hashFiles('**/pom.xml') }} | |
- name: Set up JDK | |
uses: actions/[email protected] | |
with: | |
java-version: 17 | |
distribution: 'adopt' | |
check-latest: true | |
- name: SonarCloud Scan | |
run: | | |
mvn -B -Dsonar.login=$SONAR_TOKEN --no-transfer-progress verify sonar:sonar | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} |