Skip to content

Commit

Permalink
psych fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
klobuczek committed Oct 22, 2023
1 parent 6714b37 commit 6a5559d
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 4 deletions.
27 changes: 24 additions & 3 deletions .github/workflows/specs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,37 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby: [ jruby-9.3.10.0, jruby-9.4.2.0, ruby-3.1.4, ruby-3.2.2 ]
neo4j: [ 3.5.35, 4.0.12, 4.1.12, 4.2.19, 4.3.23, 4.4.19, 5.6.0 ]
ruby: [ jruby-9.3.11.0, jruby-9.4.4.0, ruby-3.1.4, ruby-3.2.2 ]
neo4j: [ 3.5.35, 4.0.12, 4.1.12, 4.2.19, 4.3.23, 4.4.26, 5.12.0 ]
include:
- neo4j: 3.5.35
java-version: 8
- neo4j: 5.6.0
- neo4j: 5.12.0
java-version: 17
options: "-t ~causal"
active_support: 7.1.1
- active_support: 7.0.0
- active_support: 6.1.0
- active_support: 6.0.0
- active_support: 5.2.0
- active_support: 5.1.0
- active_support: 5.0.0
- active_support: 4.2.0
- active_support: 4.1.0
- active_support: 4.0.0
- active_support: 3.2.0
- active_support: 3.1.0
- active_support: 3.0.0
- active_support: 2.3.0
- active_support: 2.2.0
- active_support: 2.1.0
- active_support: 2.0.0
- active_support: 1.2.0
- active_support: 1.1.0
- active_support: 1.0.0
env:
NEO4J_VERSION: ${{ matrix.neo4j }}
ACTIVE_SUPPORT_VERSION: ${{ matrix.active_support }}
steps:
- name: Start neo4j
run: docker run --name neo4j --env NEO4J_AUTH=neo4j/pass --env NEO4J_ACCEPT_LICENSE_AGREEMENT=yes --env NEO4J_dbms_security_auth__minimum__password__length=4 -p7687:7687 -p7474:7474 -v `pwd`/tmp:/var/lib/neo4j/import --rm neo4j:${{ matrix.neo4j }}-enterprise &
Expand Down
3 changes: 2 additions & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ HOE = Class.new(Hoe) do
end.spec 'neo4j-ruby-driver' do
developer 'Heinrich Klobuczek', '[email protected]'

dependency 'activesupport', '>= 0'
active_support_version = ENV['ACTIVE_SUPPORT_VERSION']
gem 'activesupport', active_support_version&.length&.positive? ? "~> #{active_support_version}" : '>= 0'
# dependency 'async-rspec', '>= 0', :dev
dependency 'ffaker', '>= 0', :dev
dependency 'hoe', '>= 0', :dev
Expand Down

0 comments on commit 6a5559d

Please sign in to comment.