Update dependency no.cantara.config:property-config-json to v0.0.32 #250
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: Coverage and Sonar Analysis | |
on: | |
push: | |
branches: | |
- master | |
tags: | |
- '[0-9]+.[0-9]+.[0-9]+' | |
paths-ignore: | |
- '**.md' | |
jobs: | |
sonarcloud: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
# Disabling shallow clone is recommended for improving relevancy of reporting | |
fetch-depth: 0 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
cache: maven | |
- name: Build with Maven | |
run: | | |
mvn --batch-mode --no-transfer-progress package -DskipTests | |
#mvn --batch-mode --no-transfer-progress help:evaluate -Dexpression=project.properties | |
#mvn --batch-mode --no-transfer-progress help:evaluate -Daggregate.report.dir=target/site/jacoco-aggregate/jacoco.xml -Dexpression=project.properties -file stride-application/pom.xml | |
#mvn --batch-mode --no-transfer-progress help:evaluate -Daggregate.report.dir=target/site/jacoco-aggregate/jacoco.xml -Dexpression=project.properties -file stride-application-junit5/pom.xml | |
- name: SonarCloud Scan | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SONAR_TOKEN: ${{ secrets.SONARCLOUD_TOKEN }} | |
run: | | |
mvn --batch-mode --no-transfer-progress clean verify \ | |
-Dsonar.login=${{ env.SONAR_TOKEN }} \ | |
-P coverage,sonar |