DOCSP-33414 Add section on FTS to RQL reference #752
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Kotlin SDK Example App | |
on: | |
pull_request: | |
paths: | |
- 'examples/kotlin/**' | |
jobs: | |
build: | |
name: Run Tests | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: run jvm commonTests | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' | |
java-version: 17 | |
- run: cd examples/kotlin && ./gradlew jvmTest --stacktrace --info |