From 741847224d0870f5cf8f116da74dc2c89df4047b Mon Sep 17 00:00:00 2001 From: Max Date: Sat, 25 Oct 2025 14:41:42 +0800 Subject: [PATCH] Update Neo4j test URL in workflow configurations - Changed the NEO4J_TEST_URL from "neo4j://localhost:7686" to "neo4j://localhost:7687" in both pr-test.yml and unit-test.yml to reflect the updated Neo4j service endpoint. - Cleaned up whitespace in the OpenAPI signin configurations for better readability. --- .github/workflows/pr-test.yml | 4 ++-- .github/workflows/unit-test.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pr-test.yml b/.github/workflows/pr-test.yml index 2e5733ac..e0d14985 100644 --- a/.github/workflows/pr-test.yml +++ b/.github/workflows/pr-test.yml @@ -65,7 +65,7 @@ env: YAO_RUNTIME_PRECOMPILE: true # Neo4j - NEO4J_TEST_URL: "neo4j://localhost:7686" + NEO4J_TEST_URL: "neo4j://localhost:7687" NEO4J_TEST_USER: "neo4j" NEO4J_TEST_PASS: "Yao2026Neo4j" @@ -82,7 +82,7 @@ env: # === Openapi Signin Configs === SIGNIN_CLIENT_ID: "kiCeR88kDwHBDuNHvN51cZgmpp3tmF6Z" - + ## Google GOOGLE_CLIENT_ID: ${{ secrets.GOOGLE_CLIENT_ID }} GOOGLE_CLIENT_SECRET: ${{ secrets.GOOGLE_CLIENT_SECRET }} diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml index 5de68e42..0cdf6cd6 100644 --- a/.github/workflows/unit-test.yml +++ b/.github/workflows/unit-test.yml @@ -69,7 +69,7 @@ env: YAO_RUNTIME_PRECOMPILE: true # Neo4j - NEO4J_TEST_URL: "neo4j://localhost:7686" + NEO4J_TEST_URL: "neo4j://localhost:7687" NEO4J_TEST_USER: "neo4j" NEO4J_TEST_PASS: "Yao2026Neo4j" @@ -88,7 +88,7 @@ env: # === Openapi Signin Configs === SIGNIN_CLIENT_ID: "kiCeR88kDwHBDuNHvN51cZgmpp3tmF6Z" - + ## Google GOOGLE_CLIENT_ID: ${{ secrets.GOOGLE_CLIENT_ID }} GOOGLE_CLIENT_SECRET: ${{ secrets.GOOGLE_CLIENT_SECRET }}