Skip to content

Release 0.1.2 - Add plugin badges and improvements #6

Release 0.1.2 - Add plugin badges and improvements

Release 0.1.2 - Add plugin badges and improvements #6

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
jobs:
build:
name: Build, Test & Analyse
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Set up Java 17 (Temurin) with Maven cache
uses: actions/setup-java@v5
with:
java-version: '17'
distribution: 'temurin'
cache: maven
- name: Build, test, and run static analysis
run: mvn --batch-mode clean verify
- name: Upload JUnit test results
if: always()
uses: actions/upload-artifact@v7
with:
name: test-results
path: target/surefire-reports/*.xml
if-no-files-found: ignore
- name: Upload Checkstyle report
if: always()
uses: actions/upload-artifact@v7
with:
name: checkstyle-report
path: target/checkstyle-result.xml
if-no-files-found: ignore