Skip to content

feature: add the repo's first test suite (43 JUnit 5 tests) #18

feature: add the repo's first test suite (43 JUnit 5 tests)

feature: add the repo's first test suite (43 JUnit 5 tests) #18

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
java-version: '21'
distribution: temurin
cache: maven
- name: Build and test
run: ./mvnw -B clean verify