Sha256: 5672e326edd14c1ad23d4faee95844194010eaa4ed182e9bb3768338bfea41ed

Contents?: true

Size: 503 Bytes

Versions: 5

Compression:

Stored size: 503 Bytes

Contents

name: Ruby

on: [push,pull_request]

jobs:
  build:
    runs-on: ubuntu-latest

    services:
      redis:
        image: redislabs/redisgraph
        ports: ["6379:6379"]

    steps:
    - uses: actions/checkout@v2
    - name: Set up Ruby
      uses: ruby/setup-ruby@v1
      with:
        ruby-version: 3.0.0
    - name: Run the default task
      env:
        TEST_REDIS_URL: redis://localhost:6379/0
      run: |
        gem install bundler -v 2.2.15
        bundle install
        bundle exec rake

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
redgraph-0.2.2 .github/workflows/main.yml
redgraph-0.2.1 .github/workflows/main.yml
redgraph-0.2.0 .github/workflows/main.yml
redgraph-0.1.4 .github/workflows/main.yml
redgraph-0.1.3 .github/workflows/main.yml