Skip to content

Standalone workflows, upgraded dependencies #5

Standalone workflows, upgraded dependencies

Standalone workflows, upgraded dependencies #5

Workflow file for this run

# Generated by scripts/configure.py
name: build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v2
with:
distribution: temurin
java-version: 17
cache: maven
- name: Maven
run: |
# GPG must be skipped, because CI server does not have release GPG key.
# Failure on javadoc warnings is enabled only in CI builds,
# so that warnings specific to one JDK version do not break independent builds.
# Printing maven version (-V) helps diagnose CI-specific build behavior.
mvn install -Dgpg.skip=true -Dmaven.javadoc.failOnWarnings=true -B -V