Skip to content

Setup GitHub Actions #1

Setup GitHub Actions

Setup GitHub Actions #1

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: temurin
- name: Build
run: mvn -B verify