Skip to content

Merge branch 'main' into feature/BumpVersion #193

Merge branch 'main' into feature/BumpVersion

Merge branch 'main' into feature/BumpVersion #193

Workflow file for this run

name: Build
on:
push:
branches:
- 'feature/**'
- 'bugfix/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout project
uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '11'
- name: Build
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: >
mvn -B -ntp verify org.sonarsource.scanner.maven:sonar-maven-plugin:sonar "-Dsonar.coverage.jacoco.xmlReportPaths=**/target/site/jacoco.xml"