Skip to content

Align build to Java 11, add test suite + CI, and code-quality fixes #3

Align build to Java 11, add test suite + CI, and code-quality fixes

Align build to Java 11, add test suite + CI, and code-quality fixes #3

Workflow file for this run

name: build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 11
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: '11'
cache: maven
- name: Compile
run: mvn -B compile
- name: Test
run: mvn -B test