Files
mvc-puzzle/.github/workflows/maven.yml
WOBBLEFANG THE THIRD be4e036e46
Some checks failed
Java CI with Maven / build (push) Failing after 9s
..
2025-11-21 19:29:35 +01:00

20 lines
365 B
YAML

name: Java CI with Maven
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
container:
image: maven:3.9.4-eclipse-temurin-21 # Maven + JDK 21 vorinstalliert
steps:
- uses: actions/checkout@v4
- name: Build with Maven
run: mvn -B package --file pom.xml