Skip to content

Update catalog-info.yaml #36

Update catalog-info.yaml

Update catalog-info.yaml #36

Workflow file for this run

---
name: Test
on: [push]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby: [2.5, 2.6, 2.7, '3.0', 3.1, 3.2]
gemfile:
- Gemfile
- gemfiles/rails_5.gemfile
- gemfiles/rails_6.gemfile
- gemfiles/rails_7.gemfile
exclude:
- ruby: 2.5
gemfile: gemfiles/rails_7.gemfile
- ruby: 2.6
gemfile: gemfiles/rails_7.gemfile
env:
BUNDLE_GEMFILE: ${{ matrix.gemfile }}
name: Unit Tests (${{ matrix.ruby }} - ${{ matrix.gemfile }})
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler: 2.2.29
bundler-cache: true
- name: Unit tests
run: bundle exec rspec