File tree Expand file tree Collapse file tree 1 file changed +10
-8
lines changed Expand file tree Collapse file tree 1 file changed +10
-8
lines changed Original file line number Diff line number Diff line change @@ -14,10 +14,12 @@ jobs:
14
14
with :
15
15
ruby-version : " 3.3"
16
16
bundler-cache : false
17
- - name : (Linter) Rubocop
18
- run : bundle install && bundle exec rake rubocop
19
- - name : (Test) RSpec
20
- run : bundle install && bundle exec rake rspec
17
+ - name : (Bundler) Install dependencies
18
+ run : bundle install
19
+ - name : (Rubocop) Check for codestyle
20
+ run : bundle exec rake rubocop
21
+ - name : (RSpec) Tests
22
+ run : bundle exec rake rspec
21
23
specs-only-on-relevant-rubies :
22
24
runs-on : ubuntu-latest
23
25
continue-on-error : ${{ matrix.experimental }}
42
44
with :
43
45
ruby-version : ${{ matrix.ruby }}
44
46
bundler-cache : false
45
- - name : (Linter) Rubocop
46
- run : bundle install && bundle exec rake rubocop
47
- - name : (Test) RSpec
48
- run : bundle install && bundle exec rake rspec
47
+ - name : (Bundler) Install dependencies
48
+ run : bundle install
49
+ - name : (RSpec) Tests
50
+ run : bundle exec rake rspec
You can’t perform that action at this time.
0 commit comments