Skip to content

#511 done (#512)

#511 done (#512) #520

Workflow file for this run

# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Build (Java 17)
on:
push:
branches: [ master, development ]
pull_request:
branches: [ master, development ]
jobs:
package:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v2
- name: Set up JDK 17
uses: actions/setup-java@v2
with:
java-version: 17
distribution: temurin
- name: Build with Maven
run: mvn -B package --file pom.xml