Sha256: f139c8567cdc92c89932e01b5c29e665f8cb70ee9028ed28535f0bc59f712415

Contents?: true

Size: 976 Bytes

Versions: 5

Compression:

Stored size: 976 Bytes

Contents

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby

name: Ruby

on:
  push:
    branches: [ master ]
  pull_request:
    branches: [ master ]

jobs:
  test:
    runs-on: ubuntu-latest
    strategy:
      fail-fast: false
      matrix:
        ruby: [ '2.5', '2.6', '2.7' ]
    name: RSpec for Ruby version ${{ matrix.ruby }}
    steps:
      - uses: actions/checkout@v2
      - uses: supercharge/redis-github-action@1.1.0
      - name: Set up Ruby
        uses: actions/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
      - run: gem install bundler
      - run: bundle install
      - run: bundle exec rspec

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
rails-patterns-0.11.0 .github/workflows/ruby.yml
rails-patterns-0.10.0 .github/workflows/ruby.yml
rails-patterns-0.9.0 .github/workflows/ruby.yml
rails-patterns-0.8.0 .github/workflows/ruby.yml
rails-patterns-0.7.3 .github/workflows/ruby.yml