Skip to content

Prep for 0.122.2 release #641

Prep for 0.122.2 release

Prep for 0.122.2 release #641

Workflow file for this run

name: Ruby
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: [ '2.7', '3.1', '3.2' ]
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: |
bundle exec rspec spec --color --format documentation --order random
- name: Rubocop
run: |
bundle exec rubocop -D