Skip to content
This repository was archived by the owner on Dec 5, 2025. It is now read-only.

Update README.md

Update README.md #566

Workflow file for this run

name: java-ci
on: [ push ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
submodules: 'true'
- name: Set up JDK 8
uses: actions/setup-java@v3
with:
java-version: '8'
distribution: 'adopt'
- name: Build with Maven
id: mvn-tests
run: mvn --batch-mode --update-snapshots verify
- name: Generate JaCoCo Badge
uses: cicirello/jacoco-badge-generator@v2.7.0
id: jacoco
with:
generate-branches-badge: true
jacoco-csv-file: client/target/site/jacoco/jacoco.csv
on-missing-report: fail
generate-summary: true
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
files: ./client/target/site/jacoco/jacoco.xml