Skip to content

Use old bundler version #61

Use old bundler version

Use old bundler version #61

Workflow file for this run

name: Rubocop
on: [push,pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Ruby 2.6
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.6
- name: Install gems
run: |
gem update --system
gem install bundler -v "2.4.22"
gem install rubocop
- name: Run checks
run: rubocop -F --fail-level C -f s