File tree Expand file tree Collapse file tree 1 file changed +1
-5
lines changed Expand file tree Collapse file tree 1 file changed +1
-5
lines changed Original file line number Diff line number Diff line change 27
27
strategy :
28
28
matrix :
29
29
node-version : [ 10.x ]
30
- neo4j-version : [ "3.5", "3.5-enterprise ", "4.2", "4.2 -enterprise" ]
30
+ neo4j-version : [ "4.3 ", "4.3 -enterprise" ]
31
31
services :
32
32
neo4j :
33
33
image : neo4j:${{ matrix.neo4j-version }}
46
46
steps :
47
47
- name : Download dataset
48
48
run : curl --fail --output /tmp/movies.cypher https://raw.githubusercontent.com/neo4j-graph-examples/movies/8508a527d8aa1c261b0978d1d5b3156d4ac8328e/scripts/import.cypher
49
- - name : Import dataset (Neo4j 3.5)
50
- if : ${{ startsWith(matrix.neo4j-version, '3.5') }}
51
- run : docker exec --interactive neo4j-e2e sh -c 'cat /movies/movies.cypher | cypher-shell -u neo4j -p abcde'
52
49
- name : Import dataset
53
- if : ${{ !startsWith(matrix.neo4j-version, '3.5') }}
54
50
run : docker exec --interactive neo4j-e2e cypher-shell -u neo4j -p abcde --file /movies/movies.cypher
55
51
- name : Check out project sources
56
52
uses : actions/checkout@v2
You can’t perform that action at this time.
0 commit comments