Skip to content

Update README.md

Update README.md #6

Workflow file for this run

name: Java CI with Maven
on:
push:
branches: [ "main", "master" ]
pull_request:
branches: [ "main", "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
cache: maven
- name: Build with Maven
# We use -DskipTests=false to ensure the "Tests Passing" badge is earned!
run: mvn -B package --file pom.xml
- name: Test Report
if: always()
uses: actions/upload-artifact@v4
with:
name: test-reports
path: target/surefire-reports/