Update rubocop.yml to add bundle cache #10
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: RuboCop linting | |
on: | |
push: | |
pull_request: | |
types: [ opened, reopened ] | |
jobs: | |
rubocop: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
# If running on a self-hosted runner, check it meets the requirements | |
# listed at https://github.com/ruby/setup-ruby#using-self-hosted-runners | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@55283cc23133118229fd3f97f9336ee23a179fcf # v1.146.0 | |
with: | |
ruby-version: 2.7.8 | |
bundler-cache: true | |
# This step is not necessary if you add the gem to your Gemfile | |
- name: Install Code Scanning integration | |
run: bundle add code-scanning-rubocop --version 0.3.0 --skip-install | |
- name: Install dependencies | |
run: bundle install | |
- name: Rubocop run | |
run: rubocop --format github |