Skip to content

chore: bump to spring-boot 3.3.1 #67

chore: bump to spring-boot 3.3.1

chore: bump to spring-boot 3.3.1 #67

Workflow file for this run

name: spring-reactive-data-redis
on:
push:
paths:
- "data-redis/**"
branches: [ master ]
pull_request:
paths:
- "data-redis/**"
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 redis
sleep 5
docker ps -a
- name: Build with Maven
run: |
cd data-redis
mvn -B package --file pom.xml