Simplify GitHub Action RuboCop

This commit is contained in:
Olle Jonsson 2020-03-27 20:00:09 +01:00
parent f41730c95a
commit c1e7268c83
1 changed files with 3 additions and 15 deletions

View File

@ -12,20 +12,8 @@ jobs:
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7
- name: Install required package
- name: Install RuboCop gems
run: |
sudo apt-get update
sudo apt-get -y install libmysqlclient-dev libpq-dev libsqlite3-dev libncurses5-dev
- name: Cache gems
uses: actions/cache@v1
with:
path: vendor/bundle
key: ${{ runner.os }}-gem-${{ hashFiles('**/Gemfile.lock') }}
restore-keys: |
${{ runner.os }}-gem-
- name: Install gems
run: |
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3
gem install --no-document rubocop rubocop-performance rubocop-rails
- name: Run RuboCop
run: bundle exec rubocop --parallel
run: rubocop --parallel