Skip to content

chore: bump spring boot to 3.3.0 #99

chore: bump spring boot to 3.3.0

chore: bump spring boot to 3.3.0 #99

Workflow file for this run

name: spring-reactive-kotlin-routes
on:
push:
paths:
- "kotlin-routes/**"
branches: [ master ]
pull_request:
paths:
- "kotlin-routes/**"
types:
- opened
- synchronize
- reopened
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
cache: 'maven'
- name: Start up databases via Docker Compose
run: |
docker-compose up -d mongodb
sleep 5
docker ps -a
- name: Build with Maven
run: |
cd kotlin-routes
mvn -B package --file pom.xml