Skip to content

Merge pull request #18 from binance/rc-1.5.0 #38

Merge pull request #18 from binance/rc-1.5.0

Merge pull request #18 from binance/rc-1.5.0 #38

Workflow file for this run

name: Ruby
on:
push:
branches:
- master
pull_request:
branches:
- master
- rc-**
jobs:
build:
strategy:
fail-fast: false
matrix:
ruby: [3.0, 3.1, 3.2, 3.3]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Ruby ${{ matrix.ruby }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Build and rspec test
run: |
gem install bundler
bundle install --jobs 4 --retry 3
rubocop
bundle exec rspec