Skip to content

Added pom.xml

Added pom.xml #2

Workflow file for this run

name: Build starters
on:
push:
branches: [ master ]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 21
cache: maven
- name: Build and test all starters
run: mvn -B clean verify