Fix tests #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test with FalkorDB | |
on: [push,pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
services: | |
redis: | |
image: falkordb/falkordb | |
ports: ["6379:6379"] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 3.2.2 | |
- name: Run the default task | |
env: | |
TEST_REDIS_URL: redis://localhost:6379/0 | |
run: | | |
gem install bundler -v 2.4.10 | |
bundle install | |
bundle exec rake |