Skip to content

Finalize update DSL #80

Finalize update DSL

Finalize update DSL #80

Workflow file for this run

name: test
on: [push, workflow_dispatch]
jobs:
test:
name: Run tests and publish report to SonarQube
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./examples
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
- run: chmod +x gradlew
- run: ./gradlew koverXmlReport --no-daemon --continue
- env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
run: ./gradlew sonar --no-daemon --info