Skip to content

Bump ruby/setup-ruby from 1.235.0 to 1.288.0 #44

Bump ruby/setup-ruby from 1.235.0 to 1.288.0

Bump ruby/setup-ruby from 1.235.0 to 1.288.0 #44

Workflow file for this run

name: Ruby
on: push
jobs:
test:
name: "Tests (on Ruby ${{ matrix.ruby_version }})"
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby_version: [3.0, 3.1, 3.2, 3.3]
steps:
- uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 # v2.7.0
- name: Set up Ruby ${{ matrix.ruby_version }}
uses: ruby/setup-ruby@09a7688d3b55cf0e976497ff046b70949eeaccfd # v1.288.0
with:
ruby-version: ${{ matrix.ruby_version }}
bundler-cache: true
- name: Run tests
run: bundle exec rake test