5
0
mirror of https://github.com/AJMicke/KickerELO.git synced 2026-03-11 13:31:02 +01:00

Add GitHub action for Maven package

This commit is contained in:
Anton Micke
2025-03-07 21:23:15 +01:00
parent ccfc3c7023
commit 355185c1c3

22
.github/maven.yml vendored Normal file
View File

@@ -0,0 +1,22 @@
name : Maven Build
on:
push:
branches: [ "master", "develop" ]
pull_request:
branches: [ "master", "develop" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: action/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: mvn -B package -Pproduction