Sha256: 519ce991cf8f5f3437902ee7f2db7f2ace8d410003210f0f339959dc3ca246c1

Contents?: true

Size: 712 Bytes

Versions: 2

Compression:

Stored size: 712 Bytes

Contents

name: test
on: [push, pull_request]
jobs:
  build:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        ruby: ['2.7', '3.0', '3.2']
        redis:
          - redis:5.0
          - redis:6.0
          - redis:7.0
    services:
      redis:
        image: ${{ matrix.redis }}
        ports:
          - 6379:6379
    steps:
    - uses: actions/checkout@v1
    - uses: ruby/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: |
        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.6.1 .github/workflows/test.yml
redstream-0.6.0 .github/workflows/test.yml