Skip to content

Bump ruby/setup-ruby from 1.161.0 to 1.162.0 #143

Bump ruby/setup-ruby from 1.161.0 to 1.162.0

Bump ruby/setup-ruby from 1.161.0 to 1.162.0 #143

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
name: Ruby
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
services:
# Label used to access the service container
redis:
# Docker Hub image
image: redis
# Set health checks to wait until redis has started
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
# Maps port 6379 on service container to the host
- 6379:6379
strategy:
matrix:
ruby-version: ['2.7', '3.0', '3.1', '3.2']
steps:
- name: Setup System
run: |
sudo apt-get install libsqlite3-dev
- uses: actions/checkout@v4
- name: Set up Ruby
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
# change this to (see https://github.com/ruby/setup-ruby#versioning):
# uses: ruby/setup-ruby@v1
uses: ruby/setup-ruby@af848b40be8bb463a751551a1180d74782ba8a72
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
# - name: Setup Redis
# # You may pin to the exact commit or the version.
# # uses: zhulik/redis-action@765216a54a1114f109ce90a1de4775080be16ea5
# uses: zhulik/redis-action@1.1.0
# with:
# # Version of Redis to use
# redis version: # optional, default is latest
# # Number of Redis databases
# number of databases: # optional, default is 16
- name: Run tests
run: bundle exec rake test