Skip to content

Update rspec requirement from ~> 3.12.0 to ~> 3.13.0 (#604) #319

Update rspec requirement from ~> 3.12.0 to ~> 3.13.0 (#604)

Update rspec requirement from ~> 3.12.0 to ~> 3.13.0 (#604) #319

Workflow file for this run

name: Ruby
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: [3.2, 3.1, 3.0, 2.7, 2.6, 2.5, 2.4, 2.3]
bundle-tzinfo: [true, false]
env:
BUNDLE_TZINFO: "${{ matrix.bundle-tzinfo }}"
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