Skip to content

build(deps): bump ruby/setup-ruby from 1.288.0 to 1.290.0 #21

build(deps): bump ruby/setup-ruby from 1.288.0 to 1.290.0

build(deps): bump ruby/setup-ruby from 1.288.0 to 1.290.0 #21

Workflow file for this run

name: Testing on Ubuntu
on:
- push
- pull_request
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
ruby:
- 2.7
- "3.0"
- 3.1
- 3.2
- 3.3
- 3.4
os:
- ubuntu-latest
name: Ruby ${{ matrix.ruby }} unit testing on ${{ matrix.os }}
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: ruby/setup-ruby@6ca151fd1bfcfd6fe0c4eb6837eb0584d0134a0c # v1.290.0
with:
ruby-version: ${{ matrix.ruby }}
rubygems: latest
- name: unit testing
env:
CI: true
run: |
gem install bundler -v 2.4.22
gem install rake
bundle _2.4.22_ install --jobs 4 --retry 3
bundle exec rake test