Skip to content

Bump pry from 0.14.2 to 0.15.0 #545

Bump pry from 0.14.2 to 0.15.0

Bump pry from 0.14.2 to 0.15.0 #545

Workflow file for this run

name: Ruby CI
on:
push:
env:
CI: true
jobs:
build:
strategy:
matrix:
ruby-version: ["3.1", "3.2", "3.3"]
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: .ruby-version
bundler-cache: true
- name: Run rubocop
run: bundle exec rubocop
- name: Run test
run: bundle exec rspec spec