We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f746713 commit 45cff96Copy full SHA for 45cff96
.github/workflows/test.yml
@@ -33,5 +33,13 @@ jobs:
33
- name: Install dependencies
34
run: composer install --no-progress --prefer-dist
35
36
- - name: Run Tests with phpunit.dist.xml
+ - name: Set Neo4j Environment Variables
37
+ run: |
38
+ echo "NEO4J_AUTH=neo4j/${NEO4J_PASSWORD}" >> $GITHUB_ENV
39
+ echo "NEO4J_ADDRESS=${NEO4J_ADDRESS}" >> $GITHUB_ENV
40
+ env:
41
+ NEO4J_PASSWORD: "9lWmptqBgxBOz8NVcTJjgs3cHPyYmsy63ui6Spmw1d0"
42
+ NEO4J_ADDRESS: "https://6f72daa1.databases.neo4j.io"
43
+
44
+ - name: Run Tests
45
run: vendor/bin/phpunit --configuration phpunit.dist.xml
0 commit comments