Skip to content

ci: Update README.md #44

ci: Update README.md

ci: Update README.md #44

Workflow file for this run

name: JUNIT Test
on:
push:
branches:
- main
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'
server-id: github # Value of the distributionManagement/repository/id field of the pom.xml
settings-path: ${{ github.workspace }} # location for the settings.xml file
- name: Build
run: mvn clean -B package --file pom.xml
- name: Test
run: mvn test