Skip to content

Update activesupport requirement from >= 5.2, < 7.3 to >= 5.2, < 8.1 #125

Update activesupport requirement from >= 5.2, < 7.3 to >= 5.2, < 8.1

Update activesupport requirement from >= 5.2, < 7.3 to >= 5.2, < 8.1 #125

Workflow file for this run

name: Ruby
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ['3.1', '3.2', '3.3']
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Start Redis
uses: shogo82148/actions-setup-redis@v1
with:
redis-version: 5
- name: Run Rspec
run: bundle exec rspec
- name: Run Rubocop
run: bundle exec rubocop