Skip to content

Drop Ruby 2.7 support #60

Drop Ruby 2.7 support

Drop Ruby 2.7 support #60

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
test:
name: on ruby ${{matrix.ruby}}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby: ['3.0', '3.1', '3.2', '3.3', '3.4', head]
services:
redis:
image: redis
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 6379:6379
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{matrix.ruby}}
- name: Install dependencies
run: bundle install --jobs 4 --retry 3
- name: RSpec
run: bin/rspec