Skip to content

Infrastructure/security improvments #37

Infrastructure/security improvments

Infrastructure/security improvments #37

Workflow file for this run

name: CI
on:
push:
branches:
- "main"
pull_request:
branches:
- "main"
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Set up JDK 25
uses: actions/setup-java@v5
with:
java-version: '25'
distribution: 'temurin'
cache: 'maven'
- name: Make mvnw executable
run: chmod +x mvnw
- name: Run tests
run: ./mvnw -B test