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 a105af6 commit b8dd202Copy full SHA for b8dd202
.github/workflows/rubucop.yml
@@ -0,0 +1,32 @@
1
+name: RuboCop linting
2
+
3
+on:
4
+ push:
5
+ paths:
6
+ - "Gemfile"
7
+ - ".rubocop.yml"
8
+ - ".github/workflows/rubucop.yml"
9
+ - "**/*.rb"
10
+ pull_request:
11
12
13
14
15
16
17
+jobs:
18
+ build:
19
20
+ runs-on: ubuntu-latest
21
22
+ steps:
23
+ - uses: actions/checkout@v2
24
+ - name: Set up Ruby 2.6
25
+ uses: actions/setup-ruby@v1
26
+ with:
27
+ ruby-version: 2.6.x
28
+ - name: Rubocop
29
+ run: |
30
+ gem install bundler
31
+ bundle install --jobs 4 --retry 3
32
+ bundle exec rubocop -D -S
0 commit comments