Skip to content

Basic Implementation of a Custom GUI #158

Basic Implementation of a Custom GUI

Basic Implementation of a Custom GUI #158

Workflow file for this run

name: Maven Compile
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: ["21"]
name: Java (Temurin) ${{ matrix.java }} Build and Deploy
steps:
- uses: actions/checkout@v4
- name: Set up Eclipse Temurin
uses: actions/setup-java@v4
with:
distribution: "temurin"
java-version: ${{ matrix.java }}
java-package: jdk
cache: "maven"
- name: Compile with Maven
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: mvn clean package