Skip to content

Merge pull request #757 from splitrb/increase-test-coverage #147

Merge pull request #757 from splitrb/increase-test-coverage

Merge pull request #757 from splitrb/increase-test-coverage #147

Workflow file for this run

name: split
on: [push]
jobs:
test:
strategy:
matrix:
ruby: ["4.0", "3.4", "3.3", "3.2", "3.1"]
rails: ["8.1", "8.0", "7.2", "7.1"]
exclude:
# Rails 8.x requires Ruby >= 3.2
- rails: "8.0"
ruby: "3.1"
- rails: "8.1"
ruby: "3.1"
runs-on: ubuntu-latest
services:
redis:
image: redis
ports: ["6379:6379"]
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
env:
RAILS_VERSION: ${{ matrix.rails }}
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Display Ruby version
run: ruby -v
- name: Test
run: bundle exec rspec
env:
REDIS_URL: redis:6379
- name: Rubocop
run: bundle exec rubocop