Skip to content

Release 0.0.2 checklist items #71

Release 0.0.2 checklist items

Release 0.0.2 checklist items #71

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