Skip to content

fixes #10 by bumping testng dep to 7.9.0 #5

fixes #10 by bumping testng dep to 7.9.0

fixes #10 by bumping testng dep to 7.9.0 #5

Workflow file for this run

name: build on PR
on:
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: 11
- name: Build with Maven
run: mvn -B package --file pom.xml
- name: Generate JaCoCo Badge
id: jacoco
uses: cicirello/jacoco-badge-generator@v2.0.1
- name: Log coverage percentage
run: |
echo "coverage = ${{ steps.jacoco.outputs.coverage }}"
echo "branch coverage = ${{ steps.jacoco.outputs.branches }}"