Skip to content

Commit 6d0f6ef

Browse files
committed
Update GH actions
1 parent 413b9c9 commit 6d0f6ef

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

.github/workflows/tests.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff 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

synalinks/src/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from 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")

0 commit comments

Comments
 (0)