Skip to content

fix(deps): update spring boot #27

fix(deps): update spring boot

fix(deps): update spring boot #27

name: boot-read-replica-postgresql
on:
push:
paths:
- "jpa/boot-read-replica-postgresql/**"
branches: [main]
pull_request:
paths:
- "jpa/boot-read-replica-postgresql/**"
types:
- opened
- synchronize
- reopened
jobs:
build:
name: Run Unit & Integration Tests
runs-on: ubuntu-latest
defaults:
run:
working-directory: "jpa/boot-read-replica-postgresql"
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Set up JDK
uses: actions/[email protected]
with:
java-version: 17
distribution: "zulu"
cache: "maven"
- name: Start up databases via docker compose
run: |
docker compose up -d
sleep 5
docker ps -a
- name: Build and analyze
run: ./mvnw clean verify