Skip to content

Update README.md

Update README.md #8

Workflow file for this run

name: Maven tests
on:
pull_request:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- name: Set up JDK 17
uses: actions/setup-java@6a0805fcefea3d4657a47ac4c165951e33482018 # v4
with:
java-version: '17'
distribution: 'zulu'
cache: maven
- name: Run Maven tests
run: mvn clean verify