Skip to content

initial commit (WIP) #1

initial commit (WIP)

initial commit (WIP) #1

Workflow file for this run

name: verify
on:
push:
branches-ignore:
- main
jobs:
verify:
runs-on: ubuntu-latest
steps:
# Checkout source code
- name: Checkout
uses: actions/checkout@v2
# Setup Java environment
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 17
# Run maven verify
- name: Maven verify
run: mvn verify --batch-mode