Skip to content

Initial commit

Initial commit #1

Workflow file for this run

name: Continuous Integration
on: [push, pull_request]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: 'corretto'
java-version: '21'
- name: Prepare Maven
run: chmod +x mvnw
- name: Clean
run: ./mvnw clean
- name: Build
run: ./mvnw verify -DskipTests
- name: Test
run: ./mvnw test