Skip to content

Move foreign function state to the handler. #71

Move foreign function state to the handler.

Move foreign function state to the handler. #71

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
jobs:
ci:
name: CI
runs-on: ${{ matrix.os }}
continue-on-error: true
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
version: [11, 17, 21]
exclude:
- os: windows-latest
version: 21
- os: windows-latest
version: 17
- os: macos-latest
version: 21
- os: macos-latest
version: 17
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Set up Java
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '${{ matrix.version }}'
cache: maven
- name: Test Java
run: mvn -B clean install