Skip to content

Commit c151322

Browse files
committed
Another attempt at fixing Rubocop
1 parent 9a11adb commit c151322

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

.github/workflows/rubocop.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,17 @@ jobs:
88
runs-on: ubuntu-latest
99
env:
1010
CI: true
11-
TESTOPTS: "-v"
11+
TESTOPTS: '-v'
1212
steps:
1313
- uses: actions/checkout@v3
1414
- name: Set up Ruby 3.0
1515
uses: ruby/setup-ruby@v1
1616
with:
1717
ruby-version: 3.0
1818
bundler-cache: true
19+
20+
- name: Install dependencies
21+
run: bundle install
22+
1923
- name: Run RuboCop
2024
run: bundle exec rubocop --parallel

.rubocop.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,6 @@ AllCops:
1212
- 'lib/**/*'
1313
Exclude:
1414
- '**/*.xsd'
15-
- 'vendor/**/*.rb'
15+
- '.git/**/*'
16+
- 'tmp/**/*'
17+
- 'vendor/**/*'

gemfiles/nokogiri-1.5.gemfile

Lines changed: 0 additions & 5 deletions
This file was deleted.

0 commit comments

Comments
 (0)