Bump ruby/setup-ruby from 1.190.0 to 1.191.0 (#210) #449
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 | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
workflow_dispatch: | |
jobs: | |
rubocop: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@52753b7da854d5c07df37391a986c76ab4615999 | |
with: | |
ruby-version: .ruby-version | |
- name: Install gems | |
run: | | |
# Extract the exact versions of the rubocop gems from Gemfile.lock | |
rubocop_version=$(sed -n -E 's/^ rubocop \((.+)\)/\1/p' Gemfile.lock) | |
rubocop_performance_version=$(sed -n -E 's/^ rubocop-performance \((.+)\)/\1/p' Gemfile.lock) | |
gem install rubocop -v $rubocop_version | |
gem install rubocop-performance -v $rubocop_performance_version | |
- name: Run Rubocop | |
run: rubocop --except Metrics |