Sha256: 84e1dde65d00162e9eceac2a07f3e75676cb3c9ad67c81145f030cb6d63acde3

Contents?: true

Size: 791 Bytes

Versions: 2

Compression:

Stored size: 791 Bytes

Contents

name: CI
on: [push, pull_request]

jobs:
  test:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        ruby: [2.5, 2.6, 2.7]
        bundler: [default]
        gemfile:
          - rails-5.2
          - rails-6.0
          - rails-6.1

    env:
      BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile
    steps:
      # https://github.com/marketplace/actions/checkout
      - uses: actions/checkout@v2
      # https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
      - name: Set up Ruby
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
          bundler: ${{ matrix.bundler }}
          bundler-cache: true # runs `bundle install` and caches gems automatically
      - name: Run tests
        run: bundle exec rake

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
rails_material_design_icons-6.5.95 .github/workflows/main.yml
rails_material_design_icons-0.7.0 .github/workflows/main.yml