Skip to content

[README] remove warning about 0.x being the stable version #167

[README] remove warning about 0.x being the stable version

[README] remove warning about 0.x being the stable version #167

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
name: "rspec (ruby:${{ matrix.ruby }}"
strategy:
fail-fast: false
matrix:
ruby: [ "3.0", "3.1", "3.2" ]
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
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: RSpec
run: scripts/ci-rspec
rubocop:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: "3.2"
bundler-cache: true
- run: bundle exec rubocop