Skip to content

Merge branch 'main' into desktop_support #4

Merge branch 'main' into desktop_support

Merge branch 'main' into desktop_support #4

Workflow file for this run

name: Test Desktop
on:
push:
branches: [ "desktop_support" ]
concurrency:
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
cancel-in-progress: true
jobs:
test:
strategy:
matrix:
config: [
{ target: macos, os: macos-latest, tasks: jvmTest},
{ target: linux, os: ubuntu-latest, tasks: jvmTest},
{ target: windows, os: windows-latest, tasks: jvmTest},
]
runs-on: ${{ matrix.config.os }}
name: Testing on ${{ matrix.config.target }}
steps:
- uses: actions/checkout@v3
- name: Setup JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
- name: Setup gradle
uses: gradle/[email protected]
- name: Test ${{ matrix.config.target }} targets
continue-on-error: true
run: ./gradlew ${{ matrix.config.tasks }}