Skip to content

Fix not caught issues with error throwers #18

Fix not caught issues with error throwers

Fix not caught issues with error throwers #18

# This workflow will build a Java project with Gradle
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
name: Run tests on commit and PR to master
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test-jvm:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: 17
- name: Setup Gradle
uses: gradle/gradle-build-action@v2
- name: Run kotlin JVM tests
run: ./gradlew jvmTest