Compare commits

..

No commits in common. "f655f2089e4100cb05d062a2b92549205527107b" and "41d5f5c9b89f9c5664737554301c9d8d879d5fea" have entirely different histories.

2 changed files with 1 additions and 14 deletions

@ -9,20 +9,6 @@ jobs:
runs-on: "ubuntu-latest"
container:
image: "cimg/openjdk:21.0-node"
services:
postgres:
image: postgres:15
env:
POSTGRES_DB: lf8_starter_db
POSTGRES_USER: lf8_starter
POSTGRES_PASSWORD: secret
ports:
- 5432:5432
options: >-
--health-cmd="pg_isready -U lf8_starter"
--health-interval=10s
--health-timeout=5s
--health-retries=3
steps:
- name: "Checkout"
uses: actions/checkout@v3

@ -35,6 +35,7 @@ dependencies {
implementation("org.springframework.boot:spring-boot-starter-oauth2-client:3.3.4")
runtimeOnly("org.postgresql:postgresql")
implementation("org.springdoc:springdoc-openapi-starter-webmvc-ui:2.6.0")
testImplementation("com.h2database:h2")
}
tasks.withType<Test> {