Skip to content

Commit

Permalink
Added separate rubocop workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
dblock committed Oct 12, 2024
1 parent aac22e8 commit 830cd67
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/rubocop.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: lint

on: [push, pull_request]

jobs:
lint:
name: RuboCop
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.3.5'
bundler-cache: true
- name: Run RuboCop
run: bundle exec rubocop

0 comments on commit 830cd67

Please sign in to comment.