Skip to content

Update lifecycle to v2.9.4 #138

Update lifecycle to v2.9.4

Update lifecycle to v2.9.4 #138

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@v5
- name: Set up JDK
uses: actions/setup-java@v5
with:
distribution: ${{ matrix.jdk }}
java-version: 21
- name: Build
run: ./gradlew build