Skip to content

Introduction of GitHub actions and GitLab Pages workflow #2

Introduction of GitHub actions and GitLab Pages workflow

Introduction of GitHub actions and GitLab Pages workflow #2

Workflow file for this run

name: Build
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
Build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: "17"
distribution: "temurin"
cache: maven
- name: Build with Maven
run: mvn --batch-mode -V -U verify -Dsurefire.useFile=false