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 28, 2024
1 parent 3ba38c2 commit 5a096bc
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 5a096bc

Please sign in to comment.