Skip to content

deps: downgrade Spring Boot to 2.7.18 for Java 11 compatibility #4

deps: downgrade Spring Boot to 2.7.18 for Java 11 compatibility

deps: downgrade Spring Boot to 2.7.18 for Java 11 compatibility #4

Workflow file for this run

name: Java 11 Build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup JDK 11
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: '11'
cache: maven
- name: Build with Maven
run: mvn -B -e clean verify
- name: Run Tests
run: mvn -B test