Skip to content

Update lifecycle to v2.9.3 #107

Update lifecycle to v2.9.3

Update lifecycle to v2.9.3 #107

Workflow file for this run

name: Build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
jobs:
build:
strategy:
matrix:
os:
- macos-latest
- ubuntu-latest
- windows-latest
jdk:
- zulu
- adopt
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: ${{ matrix.jdk }}
java-version: 17
- name: Build
run: ./gradlew build