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.
2 parents 8db094d + 3477406 commit a32b7d2Copy full SHA for a32b7d2
.github/workflows/ci.yml
@@ -22,3 +22,14 @@ jobs:
22
run: bundle install
23
- run: bundle exec rake test
24
continue-on-error: ${{ matrix.entry.allowed-failure }}
25
+
26
+ rubocop:
27
+ runs-on: ubuntu-latest
28
+ name: RuboCop
29
+ steps:
30
+ - uses: actions/checkout@v3
31
+ - uses: ruby/setup-ruby@v1
32
+ with:
33
+ ruby-version: 3.2 # Specify the oldest supported Ruby version.
34
+ bundler-cache: true
35
+ - run: bundle exec rake rubocop
0 commit comments