Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds a Neo4j service to release workflow #3

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 10 additions & 4 deletions .github/workflows/_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,16 @@ jobs:
- build
- test-pypi-publish
runs-on: ubuntu-latest
services:
neo4j:
image: neo4j:5.24.2
env:
NEO4J_AUTH: neo4j/pleaseletmein
NEO4J_ACCEPT_LICENSE_AGREEMENT: 'eval'
NEO4J_PLUGINS: '["apoc"]'
ports:
- 7687:7687
- 7474:7474
steps:
- uses: actions/checkout@v4

Expand Down Expand Up @@ -158,10 +168,6 @@ jobs:
working-directory: ${{ inputs.working-directory }}

- name: Run integration tests
env:
NEO4J_URI: ${{ secrets.NEO4J_URI }}
NEO4J_USERNAME: ${{ secrets.NEO4J_USERNAME }}
NEO4J_PASSWORD: ${{ secrets.NEO4J_PASSWORD }}
run: make integration_tests
working-directory: ${{ inputs.working-directory }}

Expand Down
Loading