Skip to content

Commit 8247d60

Browse files
committed
reworked connections
1 parent a8e2fd6 commit 8247d60

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

.github/workflows/integration-test-aura.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
tests:
1313
runs-on: ubuntu-latest
1414
env:
15-
CONNECTIONS: ${{ secrets.AURA_CONNECTIONS }}
15+
CONNECTION: ${{ secrets.AURA_CONNECTIONS }}
1616
name: "Running on all provided Aura instances"
1717
strategy:
1818
fail-fast: false

.github/workflows/integration-test-cluster-neo4j-4.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
tests:
1313
runs-on: ubuntu-latest
1414
env:
15-
CONNECTIONS: neo4j://neo4j:testtest@localhost:7688
15+
CONNECTION: neo4j://neo4j:testtest@localhost:7688
1616
name: "Running on PHP ${{ matrix.php-version }} in a Neo4j ${{ matrix.neo4j-version }} cluster"
1717
strategy:
1818
fail-fast: false

.github/workflows/integration-test-cluster-neo4j-5.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
tests:
1313
runs-on: ubuntu-latest
1414
env:
15-
CONNECTIONS: neo4j://neo4j:testtest@localhost7688
15+
CONNECTION: neo4j://neo4j:testtest@localhost7688
1616
name: "Running on PHP ${{ matrix.php-version }} with a Neo4j ${{ matrix.neo4j-version }} cluster"
1717
strategy:
1818
fail-fast: false

.github/workflows/integration-test-single-server.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,14 @@ jobs:
1212
tests:
1313
runs-on: ubuntu-latest
1414
env:
15-
CONNECTIONS: neo4j://neo4j:testtest@localhost,bolt://neo4j:testtest@localhost,http://neo4j:testtest@localhost
16-
name: "Running on PHP ${{ matrix.php-version }} with a Neo4j ${{ matrix.neo4j-version }} instance"
15+
CONNECTION: ${{ matrix.test-connection }}
16+
name: "Running on PHP ${{ matrix.php-version }} with a Neo4j ${{ matrix.neo4j-version }} instance connecting over ${{ matrix.test-connection }}"
1717
strategy:
1818
fail-fast: false
1919
matrix:
2020
php-version: ["8.0", "8.2"]
2121
neo4j-version: ["4.4", "5.1", "5.5"]
22+
test-connection: ['neo4j://neo4j:testtest@localhost', 'bolt://neo4j:testtest@localhost', 'http://neo4j:testtest@localhost']
2223

2324
services:
2425
neo4j:

0 commit comments

Comments
 (0)