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 ea5744a commit fd55b0dCopy full SHA for fd55b0d
.github/workflows/ruby.yml
@@ -29,12 +29,17 @@ jobs:
29
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
30
31
- name: Run tests
32
- run: bundle exec rake
+ run: bundle exec rake spec
33
# enable code coverage reporting
34
env:
35
COVERAGE: 'true'
36
COVERAGE_LCOV: 'true'
37
38
+ - name: Run RuboCop
39
+ # only for latest version, it is dropping Ruby support fster than us
40
+ if: ${{ matrix.ruby-version == '3.4' }}
41
+ run: bundle exec rake rubocop
42
+
43
- name: Coveralls Report
44
# send it only for the latest version to avoid duplicate submits
45
if: ${{ matrix.ruby-version == '3.4' }}
0 commit comments