Skip to content

Addresses #10

Addresses #10 #11

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
with:
fetch-depth: 0
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
- 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.projectKey=dansiviter_cdi-repos "-Dsonar.coverage.jacoco.xmlReportPaths=**/target/site/jacoco.xml"