Merge pull request #151 from uyuni-project/dependabot/bundler/rspec-3… #158
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: [ master, devel ] | |
paths: | |
- '*.gemspec' | |
- 'bin/tetra' | |
- 'lib/**.rb' | |
- 'spec/**.rb' | |
- '**.rb' | |
- '.github/workflows/rubocop.yml' | |
- '.rubocop_todo.yml' | |
- '.rubocop.yml' | |
pull_request: | |
branches: [ master, devel ] | |
paths: | |
- '*.gemspec' | |
- 'bin/tetra' | |
- 'lib/**.rb' | |
- 'spec/**.rb' | |
- '**.rb' | |
- '.github/workflows/rubocop.yml' | |
- '.rubocop_todo.yml' | |
- '.rubocop.yml' | |
jobs: | |
rubocop: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: '3.2' | |
- name: Install RuboCop | |
run: gem install -v 1.57.2 rubocop | |
- name: Run RuboCop | |
run: | | |
rubocop 'bin/tetra' | |
rubocop 'lib/tetra.rb' | |
rubocop 'lib/tetra/' | |
rubocop 'spec/spec_helper.rb' | |
rubocop 'spec/lib' |