Skip to content

Merge pull request #1258 from shubhamshinde360/0.119.0-release #585

Merge pull request #1258 from shubhamshinde360/0.119.0-release

Merge pull request #1258 from shubhamshinde360/0.119.0-release #585

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@master
- 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