Skip to content

updated neo4j version #869

updated neo4j version

updated neo4j version #869

Workflow file for this run

name: Specs
on:
push:
branches: [ 5.0 ]
pull_request:
branches: [ 5.0 ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
continue-on-error: false
timeout-minutes: 10
strategy:
fail-fast: false
matrix:
ruby: [ jruby, ruby ]
neo4j: [ 4.4.36, 5.22.0 ]
include:
- ruby: jruby
java-version: 17
env:
NEO4J_VERSION: ${{ matrix.neo4j }}
steps:
- name: Start neo4j
run: docker run --name neo4j --env NEO4J_AUTH=neo4j/password --env NEO4J_ACCEPT_LICENSE_AGREEMENT=yes -p7687:7687 -p7474:7474 -v `pwd`/tmp:/var/lib/neo4j/import --rm neo4j:${{ matrix.neo4j }}-enterprise &
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Set up Java
uses: actions/setup-java@v4
if: matrix.java-version
with:
distribution: 'temurin'
java-version: ${{ matrix.java-version }}
- name: Install dependencies
run: bin/setup
- name: Wait for neo4j
run: while [ $((curl localhost:7474/ > /dev/null 2>&1); echo $?) -ne 0 ]; do sleep 1; done
- name: Run tests
run: bundle exec rspec -t ~csv -t ~causal