Skip to content

Merge commit '62a94149752f6bdaf935f42208ebeac26edaef34' of https://gi… #2

Merge commit '62a94149752f6bdaf935f42208ebeac26edaef34' of https://gi…

Merge commit '62a94149752f6bdaf935f42208ebeac26edaef34' of https://gi… #2

Workflow file for this run

name: Java CI with Gradle
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ '11', '17', '19' ]
steps:
- uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
- name: ./gradlew build javadoc
run: ./gradlew build
- name: ./gradlew requireJavadoc
run: ./gradlew requireJavadoc
- name: ./gradlew spotlessCheck
run: ./gradlew spotlessCheck