mirror of https://github.com/rails/rails
Simplify GitHub Action RuboCop
This commit is contained in:
parent
f41730c95a
commit
c1e7268c83
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue