Sha256: d8e90cbbb7d0f441cdb652f9828d5b21c1eff3d18ce009bbe338a970543e42b1

Contents?: true

Size: 648 Bytes

Versions: 3

Compression:

Stored size: 648 Bytes

Contents

name: test
on: [push, pull_request]
jobs:
  build:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        ruby: ['2.5', '2.6', '2.7']
    services:
      redis:
        image: 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

3 entries across 3 versions & 1 rubygems

Version Path
redstream-0.4.0 .github/workflows/test.yml
redstream-0.3.0 .github/workflows/test.yml
redstream-0.2.0 .github/workflows/test.yml