We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1cb1d33 commit f18d033Copy full SHA for f18d033
.github/workflows/lint.yml
@@ -0,0 +1,15 @@
1
+name: lint
2
+
3
+on: [push, pull_request]
4
5
+jobs:
6
+ lint:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v3
10
+ - uses: ruby/setup-ruby@v1
11
+ with:
12
+ ruby-version: '3.0'
13
+ bundler-cache: true
14
+ - name: Run rubocop
15
+ run: bundle exec rubocop
.rubocop.yml
@@ -6,6 +6,7 @@ AllCops:
- doc/**/*.rb
- rake.gemspec
- bin/*
+ - vendor/**/*
Style/HashSyntax:
Enabled: true
0 commit comments