We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f38206 commit 97d2c0cCopy full SHA for 97d2c0c
.github/workflows/ruby.yml
@@ -19,10 +19,14 @@ jobs:
19
with:
20
ruby-version: .ruby-version
21
bundler-cache: true
22
- - name: Build and test with Rake, RSpec, RuboCop, Fasterer
23
- run: |
24
- bin/rake
25
- bin/rubocop
26
- bin/fasterer
+ - name: Lint code for consistent style with RuboCop
+ run: bin/rubocop --parallel -f github
+ continue-on-error: true
+ - name: Use Fasterer to check various places in your code that could be faster.
+ run: bin/fasterer
27
28
+ - name: Build and test with Rake, RSpec
29
+ run: bin/rake
30
31
- name: Upload coverage to Codecov
32
uses: codecov/codecov-action@v1
0 commit comments