Skip to content

Commit

Permalink
missing document start "---" (document-start)
Browse files Browse the repository at this point in the history
  • Loading branch information
cyri113 committed Jun 28, 2024
1 parent 63d84a0 commit 204ad4f
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 7 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/production.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
---

name: Production CI/CD Pipeline

on:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/start.staging.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
---

name: Staging CI/CD Pipeline

on: pull_request
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ coverage.xml
.hypothesis/
.pytest_cache/
cover/
coverage/

# Translations
*.mo
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.example.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: "3.9"
---

services:
server:
Expand Down
17 changes: 11 additions & 6 deletions docker-compose.test.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: "3.9"
---

services:
app:
Expand Down Expand Up @@ -55,7 +55,7 @@ services:
- NEO4J_PLUGINS=["apoc", "graph-data-science"]
- NEO4J_dbms_security_procedures_unrestricted=apoc.*,gds.*
healthcheck:
test: ["CMD", "wget", "http://localhost:7474"]
test: [ "CMD", "wget", "http://localhost:7474" ]
interval: 1m30s
timeout: 10s
retries: 2
Expand All @@ -77,7 +77,7 @@ services:
- POSTGRES_USER=root
- POSTGRES_PASSWORD=pass
healthcheck:
test: ["CMD-SHELL", "pg_isready"]
test: [ "CMD-SHELL", "pg_isready" ]
interval: 10s
timeout: 5s
retries: 5
Expand Down Expand Up @@ -105,12 +105,17 @@ services:
qdrant-healthcheck:
restart: always
image: curlimages/curl:latest
entrypoint: ["/bin/sh", "-c", "--", "while true; do sleep 30; done;"]
entrypoint:
[
"/bin/sh",
"-c",
"--",
"while true; do sleep 30; done;"
]
depends_on:
- qdrant
healthcheck:
test: ["CMD", "curl", "-f", "http://qdrant:6333/readyz"]
test: [ "CMD", "curl", "-f", "http://qdrant:6333/readyz" ]
interval: 10s
timeout: 2s
retries: 5

0 comments on commit 204ad4f

Please sign in to comment.