Sha256: aae7b671af295ef625e2b3c6cea74b777f3fb6cc09ad14362655ed8959080ef5

Contents?: true

Size: 728 Bytes

Versions: 2

Compression:

Stored size: 728 Bytes

Contents

name: test
on: [push, pull_request]
jobs:
  build:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        ruby: ['2.5', '2.6', '2.7', '3.0']
        redis:
          - redis:5.0
          - redis:6.0
    services:
      redis:
        image: ${{ matrix.redis }}
        ports:
          - 6379:6379
    steps:
    - uses: actions/checkout@v1
    - uses: actions/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby }}
    - uses: actions/cache@v1
      id: cache
      with:
        path: vendor/bundler
        key: ${{ hashFiles('Gemfile.lock') }}-${{ matrix.ruby }}
    - run: |
        gem install bundler
        bundle install --path=vendor/bundler
        bundle exec rspec
        bundle exec rubocop

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
redstream-0.4.4 .github/workflows/test.yml
redstream-0.4.3 .github/workflows/test.yml