Skip to content

Update faraday, ruby, and bump gem version to 0.6.0 (#48) #128

Update faraday, ruby, and bump gem version to 0.6.0 (#48)

Update faraday, ruby, and bump gem version to 0.6.0 (#48) #128

Workflow file for this run

name: Linters
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.ref }}
- name: Cache Gems
uses: actions/cache@v1
with:
path: vendor/bundle
key: ${{ runner.os }}-gem-${{ hashFiles('**/Gemfile.lock') }}
restore-keys: |
${{ runner.os }}-gem-
- name: Setup ruby
uses: ruby/setup-ruby@v1
- run: |
gem install bundler
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3
- name: Rubocop checks
run: bundle exec rubocop