Skip to content

Bump actions/checkout from 3 to 4 (#17) #38

Bump actions/checkout from 3 to 4 (#17)

Bump actions/checkout from 3 to 4 (#17) #38

Workflow file for this run

on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
services:
redis:
image: redis
ports:
- 6379:6379
strategy:
matrix:
ruby-version: ['3.2', '3.1', '3.0', '2.7']
steps:
- uses: actions/checkout@v4
- name: Set up Ruby ${{ matrix.ruby-version }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
- name: Install dependencies
run: bundle install
- name: Run tests
run: bundle exec rake