diff --git a/.github/workflows/download-neo4j.yml b/.github/workflows/download-neo4j.yml index 50584c1..1113ded 100644 --- a/.github/workflows/download-neo4j.yml +++ b/.github/workflows/download-neo4j.yml @@ -47,10 +47,13 @@ jobs: echo heapsize = $HEAP_SIZE neo4j-admin import --verbose --nodes=Concept="import/CUIs.csv" --relationships="import/CUI-CUIs.csv" --nodes=Code="import/CODEs.csv" --relationships=CODE="import/CUI-CODEs.csv" --skip-bad-relationships --skip-duplicate-nodes - - name: neo4j commands + - name: neo4j commands # cat /etc/neo4j/neo4j.conf run: | - cat /etc/neo4j/neo4j.conf + neo4j-admin dbms set-initial-password neo4j2020 neo4j start + python3 test/connect_neo4j.py + +