Skip to content

Actually include the root module again (#42) #136

Actually include the root module again (#42)

Actually include the root module again (#42) #136

Workflow file for this run

name: SonarQube
env:
MAVEN_VERSION: '3.9.15'
on:
workflow_dispatch:
push:
branches: [main]
pull_request:
types: [opened, synchronize, reopened]
jobs:
sonarqube-scan:
name: SonarQube Scan
runs-on: ubuntu-latest
timeout-minutes: 30
permissions:
contents: read
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
with:
fetch-depth: 0
- name: SonarQube Scan
uses: ./.github/actions/scan-with-sonar
with:
java-version: '17'
maven-version: ${{ env.MAVEN_VERSION }}
sonarq-token: ${{ secrets.SONARQ_TOKEN }}
github-token: ${{ secrets.GITHUB_TOKEN }}