Skip to content

publish workflow with metadata #3

publish workflow with metadata

publish workflow with metadata #3

Workflow file for this run

name: CI-Pipeline
on:
push:
branches:
- 'master'
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6.0.2
- name: Set up JDK
uses: actions/setup-java@v5.1.0
with:
java-version: '25'
distribution: 'temurin'
cache: 'maven'
- name: Complie and run tests
run: ./mvnw -B test
- name: Run spotless
run: ./mvnw -B spotless:check