Skip to content

Commit

Permalink
Run Rubocop in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
n-rodriguez committed Aug 31, 2024
1 parent 5009354 commit bee170e
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,24 @@ on:
- cron: '0 4 1 * *'

jobs:
rubocop:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.3'

- name: Bundler
run: bundle install

- name: Rubocop
run: bin/rubocop

rspec:
runs-on: ubuntu-latest

Expand Down

0 comments on commit bee170e

Please sign in to comment.