File tree Expand file tree Collapse file tree 2 files changed +10
-3
lines changed
Expand file tree Collapse file tree 2 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -23,13 +23,20 @@ jobs:
2323 python-version : ${{ matrix.python-version }}
2424 - name : Display Python version
2525 run : python -c "import sys; print(sys.version)"
26+ - name : Install Neo4j tools
27+ run : |
28+ wget -O - https://debian.neo4j.com/neotechnology.gpg.key | sudo apt-key add -
29+ echo 'deb https://debian.neo4j.com stable latest' | sudo tee -a /etc/apt/sources.list.d/neo4j.list;sudo add-apt-repository -y ppa:openjdk-r/ppa;
30+ sudo apt-get install neo4j -y;
31+ - name : Start Neo4J
32+ run : docker run --publish=7474:7474 --publish=7687:7687 --volume=$HOME/neo4j/data:/data --env=NEO4J_AUTH=none neo4j &
2633 - name : Install Project Manager
2734 run : ./shell/uv.sh
2835 - name : Install Synalinks
2936 run : ./shell/install.sh
3037 - name : Install pytest
3138 run : uv pip install pytest pytest-cov
32- - name : Start Neo4J
33- run : docker run --publish=7474:7474 --publish=7687:7687 --volume=$HOME/neo4j/data:/data --env=NEO4J_AUTH=none neo4j
39+ - name : Ping Neo4J
40+ run : cypher-shell -a bolt://localhost:7687 -u neo4j "RETURN 1 as ping;"
3441 - name : Run the tests
3542 run : ./shell/test.sh
Original file line number Diff line number Diff line change 33from synalinks .src .api_export import synalinks_export
44
55# Unique source of truth for the version number.
6- __version__ = "0.3.000 "
6+ __version__ = "0.3.002 "
77
88
99@synalinks_export ("synalinks.version" )
You can’t perform that action at this time.
0 commit comments