Skip to content

Test commit and deploy #13

Test commit and deploy

Test commit and deploy #13

Workflow file for this run

name: Test
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Java
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '21'
- name: Build with Maven
run: ./mvnw clean verify -DRUNNING_ENV=CI