Skip to content

chore(deps): update actions/checkout action to v6 #52

chore(deps): update actions/checkout action to v6

chore(deps): update actions/checkout action to v6 #52

Workflow file for this run

name: CI
permissions:
contents: read
on:
push:
branches:
- '**'
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '21'
cache: 'maven'
- name: Build Artifact
run: mvn --batch-mode clean verify
- name: Upload test results
if: always()
uses: actions/upload-artifact@v4
with:
name: test-results
path: target/surefire-reports/
- name: Upload JaCoCo HTML coverage report
if: always()
uses: actions/upload-artifact@v4
with:
name: jacoco-report
path: target/site/jacoco/
if-no-files-found: warn