Skip to content

Introduced join(..).on(..) clause. #9

Introduced join(..).on(..) clause.

Introduced join(..).on(..) clause. #9

Workflow file for this run

name: build
on:
push:
branches:
- main
jobs:
build:
strategy:
matrix:
os: [ubuntu-20.04]
jdk: [17]
runs-on: ${{ matrix.os }}
env:
JDK_VERSION: ${{ matrix.jdk }}
steps:
- uses: actions/checkout@v2
- name: setup jdk
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.jdk }}
- name: build with maven
run: mvn --batch-mode --update-snapshots verify