Skip to content

build and test

build and test #584

Workflow file for this run

name: build and test
on:
push:
pull_request:
schedule:
- cron: '59 6 * * *'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: '9'
distribution: 'adopt-openj9'
- name: Build with Maven
run: mvn clean verify