Skip to content

Update Gemfile.lock #820

Update Gemfile.lock

Update Gemfile.lock #820

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.failure-allowed }}
strategy:
matrix:
ruby-version: ['3.2', '3.3', '3.4']
failure-allowed: [false]
include:
- ruby-version: '4.0'
failure-allowed: true
steps:
- uses: actions/checkout@v6
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Run tests
run: |
ruby -v
bundle exec rspec spec