Skip to content

Migrate to JUnit 5 tests #5

Migrate to JUnit 5 tests

Migrate to JUnit 5 tests #5

Workflow file for this run

name: Run `mvn verify` on JDK 17
on:
pull_request:
branches: [ "dev/1.0" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
cache: maven
- name: Build and Verify with Maven
run: mvn -B verify