Skip to content

chore(deps): bump org.apache.maven.plugins:maven-jar-plugin from 3.3.0 to 3.5.0 #32

chore(deps): bump org.apache.maven.plugins:maven-jar-plugin from 3.3.0 to 3.5.0

chore(deps): bump org.apache.maven.plugins:maven-jar-plugin from 3.3.0 to 3.5.0 #32

Workflow file for this run

name: CI
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-java@v5
with:
java-version: '21'
distribution: 'temurin'
cache: 'maven'
- name: Build with Maven
run: mvn -q verify
- name: Upload surefire reports
if: always()
uses: actions/upload-artifact@v4
with:
name: surefire-reports
path: '**/target/surefire-reports'
if-no-files-found: ignore
- name: Upload JaCoCo coverage
if: always()
uses: actions/upload-artifact@v4
with:
name: jacoco-exec
path: '**/target/jacoco.exec'
if-no-files-found: ignore
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
with:
files: '**/target/site/jacoco/jacoco.xml'
token: ${{ secrets.CODECOV_TOKEN }}
- name: Upload test results to Codecov
if: ${{ !cancelled() }}
uses: codecov/test-results-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: '**/target/surefire-reports/*.xml'