Skip to content

update rub to 3.3.5, update gems and allow all patch version #471

update rub to 3.3.5, update gems and allow all patch version

update rub to 3.3.5, update gems and allow all patch version #471

Workflow file for this run

# This workflow runs RSpec tests
name: RSpec
on: [push]
jobs:
test:
timeout-minutes: 10
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
# Due to https://github.com/actions/runner/issues/849, we have to use quotes
ruby: ['3.3']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- run: bundle exec rspec -f d