Skip to content

Jdk 17

Jdk 17 #13

Workflow file for this run

# Builds Pull-requests to key branches
name: Pull request CI
on:
pull_request:
branches:
- develop
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: 17
distribution: 'adopt'
- name: Build project and run default test suite
run: mvn clean verify -ntp