Skip to content

Merge branch 'devin/java8-to-11' of https://git-manager.devin.ai/prox… #2

Merge branch 'devin/java8-to-11' of https://git-manager.devin.ai/prox…

Merge branch 'devin/java8-to-11' of https://git-manager.devin.ai/prox… #2

Workflow file for this run

name: Java 11 Build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup JDK 11
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: '11'
cache: maven
- name: Build with Maven
run: mvn -B -e clean verify
- name: Run Tests
run: mvn -B test