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