Skip to content

fix: improve annotation processing logic and update Javadoc comments … #44

fix: improve annotation processing logic and update Javadoc comments …

fix: improve annotation processing logic and update Javadoc comments … #44

Workflow file for this run

name: Maven Build
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: read
concurrency:
group: maven-build-${{ github.ref }}
cancel-in-progress: true
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
jobs:
build:
name: maven build
runs-on: ubuntu-latest
steps:
- name: Git Checkout
uses: actions/checkout@v6
- name: Set up JDK 17
uses: actions/setup-java@v5
with:
cache: maven
java-version: '17'
distribution: 'temurin'
- name: Build with Maven
run: |
chmod +x ./mvnw
./mvnw -B package --file pom.xml
- name: Upload coverage reports to Codecov
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository
uses: codecov/codecov-action@v6
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: false