Skip to content

Update pom.xml

Update pom.xml #13

Workflow file for this run

name: Unit Tests with Code Coverage
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
- name: Build and Test with Code Coverage
run: |
./mvnw clean test jacoco:report