Skip to content

Add Redis.current possible breaking change to CHANGELOG 🚧 #53

Add Redis.current possible breaking change to CHANGELOG 🚧

Add Redis.current possible breaking change to CHANGELOG 🚧 #53

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: ['2.7', '3.0', '3.1', '3.2', 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