Skip to content

Update httparty requirement from ~> 0.18.0 to >= 0.18, < 0.22 #13

Update httparty requirement from ~> 0.18.0 to >= 0.18, < 0.22

Update httparty requirement from ~> 0.18.0 to >= 0.18, < 0.22 #13

Workflow file for this run

name: StandardRB
on:
pull_request:
branches:
- '*'
push:
branches:
- master
jobs:
standard:
name: StandardRB Check Action
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Set up Ruby 2.6.6
uses: actions/setup-ruby@v1
with:
ruby-version: 2.6.6
- uses: actions/cache@master
with:
path: vendor/bundle
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
restore-keys: |
${{ runner.os }}-gems-
- name: Bundle install
run: |
gem install bundler
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3
- name: Run StandardRB
run: bin/lint