Bump addressable from 2.7.0 to 2.8.7 #153
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI/Rubocop | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Ruby | |
uses: actions/setup-ruby@v1 | |
with: | |
ruby-version: 2.7 | |
- name: Install bundler | |
run: | | |
gem install bundler:2.1.4 | |
bundle config path vendor/bundle | |
- name: Cache gems | |
uses: actions/cache@v1 | |
with: | |
path: vendor/bundle | |
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }} | |
restore-keys: | | |
${{ runner.os }}-gems- | |
- name: Install gems | |
if: steps.cache.outputs.cache-hit != 'true' | |
run: bundle install --jobs 4 --retry 3 | |
- name: Build and test with Rake/Rubocop | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
bundle exec rake | |
bundle exec rubocop --display-cop-names |