Skip to content

Overhaul README and add a project logo #5

Overhaul README and add a project logo

Overhaul README and add a project logo #5

Workflow file for this run

name: CI
on:
push:
branches: ["**"]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: "21"
cache: maven
- name: Build and test
run: |
chmod +x mvnw
./mvnw -B verify
- name: Upload test reports on failure
if: failure()
uses: actions/upload-artifact@v4
with:
name: surefire-reports
path: target/surefire-reports/