Skip to content

Commit

Permalink
Add rubocop to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
mullermp committed Sep 27, 2023
1 parent e630fa0 commit 2df2589
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,20 @@ jobs:
- name: Test
run: bundle exec rake release:test

rubocop:
runs-on: ubuntu-latest

steps:
- name: Set up Ruby 3.2
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2

- uses: actions/checkout@v2

- name: Install gems
run: bundle install

- name: Rubocop
run: bundle exec rubocop -E -S

0 comments on commit 2df2589

Please sign in to comment.