Skip to content

Ci and fix for native engines #1

Ci and fix for native engines

Ci and fix for native engines #1

Workflow file for this run

name: 'Tests'
on:
pull_request:
push:
branches:
- main
jobs:
test-jvm:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Run tests
run: ./gradlew testJvm
test-linux:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Run tests
run: ./gradlew testNative
test-darwin:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Run tests
run: ./gradlew testNative
test-mingw:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Run tests
run: ./gradlew testNative