Bump no.nav.familie.felles:familie-utbetalingsgenerator from 1.0_2024… #77
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: Sonar | |
on: | |
push: | |
branches: | |
- 'main' | |
jobs: | |
enhetstester: | |
name: Enhetstester | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
java-version: 21 | |
distribution: 'temurin' | |
cache: 'maven' | |
- name: Kjør enhetstester | |
env: | |
GITHUB_USERNAME: x-access-token | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
mvn verify -B --no-transfer-progress --settings .m2/maven-settings.xml --file pom.xml -DexcludedGroups=integration,verdikjedetest -Pjacoco -DjacocoTestDirectory=UT | |
- name: Last opp Jacoco UT rapport | |
uses: actions/upload-artifact@v4 | |
with: | |
name: jacocoUT | |
path: target/jacoco/UT/jacoco.xml | |
retention-days: 1 | |
overwrite: true | |
integrasjonstester: | |
name: Integrasjonstester | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
java-version: 21 | |
distribution: 'temurin' | |
cache: 'maven' | |
- name: Kjør integrasjonstester | |
env: | |
GITHUB_USERNAME: x-access-token | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
mvn verify -B --no-transfer-progress --settings .m2/maven-settings.xml --file pom.xml -Dgroups=integration -DexcludedGroups=verdikjedetest -Dsurefire.rerunFailingTestsCount=2 -Pjacoco -DjacocoTestDirectory=IT | |
- name: Last opp Jacoco IT rapport | |
uses: actions/upload-artifact@v4 | |
with: | |
name: jacocoIT | |
path: target/jacoco/IT/jacoco.xml | |
retention-days: 1 | |
overwrite: true | |
sonar: | |
name: Sonar | |
runs-on: ubuntu-latest-8-cores | |
needs: [ enhetstester, integrasjonstester ] | |
if: github.actor != 'dependabot[bot]' | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-java@v4 | |
with: | |
java-version: 21 | |
distribution: 'temurin' | |
cache: 'maven' | |
- name: Last ned Jacoco UT rapport | |
uses: actions/download-artifact@v4 | |
with: | |
name: jacocoUT | |
path: jacoco/UT | |
- name: Last ned Jacoco IT rapport | |
uses: actions/download-artifact@v4 | |
with: | |
name: jacocoIT | |
path: jacoco/IT | |
- name: Cache Sonar packages | |
uses: actions/cache@v4 | |
with: | |
path: ~/.sonar/cache | |
key: ${{ runner.os }}-sonar | |
restore-keys: ${{ runner.os }}-sonar | |
- name: Kjør Sonar | |
env: | |
GITHUB_USERNAME: x-access-token | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
run: | | |
mvn sonar:sonar -Dsonar.coverage.jacoco.xmlReportPaths="jacoco/UT/jacoco.xml,jacoco/IT/jacoco.xml" |