Skip to content

#3 Add complete SCM block for Maven Central publishing #20

#3 Add complete SCM block for Maven Central publishing

#3 Add complete SCM block for Maven Central publishing #20

Workflow file for this run

name: CI Build
on:
push:
branches: [ master, develop, 'feature/**', 'bugfix/**', 'release/**', 'hotfix/**' ]
pull_request:
branches: [ master, develop ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 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 with Maven
run: mvn clean install -B -Dgpg.skip=true -Djacoco.skip=true
- name: Upload Test Results
if: always()
uses: actions/upload-artifact@v4
with:
name: test-results-java-${{ matrix.java }}
path: |
target/surefire-reports/
target/it/*/build.log