Skip to content

Configure SonarQube reporting exclusions #45

Configure SonarQube reporting exclusions

Configure SonarQube reporting exclusions #45

Workflow file for this run

name: Test
on: [push, workflow_dispatch]
jobs:
build:
name: Test
runs-on: ubuntu-latest
permissions: read-all
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
- name: Run tests with Gradle wrapper
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
run: cd examples && chmod +x gradlew && ./gradlew koverXmlReport sonar --no-daemon --continue --info