Skip to content

fix: switch to Central Portal publishing plugin #2

fix: switch to Central Portal publishing plugin

fix: switch to Central Portal publishing plugin #2

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [11, 17, 21]
steps:
- uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: temurin
cache: maven
- name: Build and test
run: mvn verify --batch-mode --no-transfer-progress
- name: Upload coverage report
if: matrix.java == 21
uses: actions/upload-artifact@v4
with:
name: jacoco-report
path: target/site/jacoco/
retention-days: 14