Skip to content

Only launch jacoco reports in browser in local mode #5

Only launch jacoco reports in browser in local mode

Only launch jacoco reports in browser in local mode #5

Workflow file for this run

---
name: Java CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 21
uses: actions/setup-java@v3
with:
java-version: '21'
distribution: 'temurin'
- name: Build with Maven
run: mvn -B package --file pom.xml
- name: Archive JaCoCo Reports
uses: actions/upload-artifact@v2
with:
name: jacoco-reports
path: |
target/site/jacoco/*