Skip to content

Commit 97d2c0c

Browse files
committed
Split build job into steps 🤖
1 parent 4f38206 commit 97d2c0c

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

.github/workflows/ruby.yml

+9-5
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,14 @@ jobs:
1919
with:
2020
ruby-version: .ruby-version
2121
bundler-cache: true
22-
- name: Build and test with Rake, RSpec, RuboCop, Fasterer
23-
run: |
24-
bin/rake
25-
bin/rubocop
26-
bin/fasterer
22+
- name: Lint code for consistent style with RuboCop
23+
run: bin/rubocop --parallel -f github
24+
continue-on-error: true
25+
- name: Use Fasterer to check various places in your code that could be faster.
26+
run: bin/fasterer
27+
continue-on-error: true
28+
- name: Build and test with Rake, RSpec
29+
run: bin/rake
30+
continue-on-error: true
2731
- name: Upload coverage to Codecov
2832
uses: codecov/codecov-action@v1

0 commit comments

Comments
 (0)