Skip to content

Support ruby3

Support ruby3 #10

Workflow file for this run

name: test
on:
push:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby:
- "2.3.8"
- "2.4.10"
- "2.5.9"
- "2.6.10"
- "2.7.8"
- "3.0.6"
gemfile:
- gemfiles/activesupport_5_2.gemfile
exclude:
- ruby: "3.0.6"
gemfile: gemfiles/activesupport_5_2.gemfile
services:
memcached_11211:
image: memcached
ports:
- 11211:11211
memcached_21211:
image: memcached
ports:
- 21211:11211
env:
BUNDLE_GEMFILE: ${{ matrix.gemfile }}
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle exec rake spec