Skip to content

Release #1.0.0.ALPHA-SNAPSHOT #1

Release #1.0.0.ALPHA-SNAPSHOT

Release #1.0.0.ALPHA-SNAPSHOT #1

Workflow file for this run

# This workflow will build a Java/Kotlin project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Build project
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v3
- name: setup java 8
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: '8'
cache: 'maven'
- name: Build with Maven
run: mvn -B package --file pom.xml