Skip to content

Commit

Permalink
[chore] Add Linters to PR Workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
John-peterson-coinbase committed May 6, 2024
1 parent 948fbe5 commit 44febab
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Run Linters

on: [pull_request]

jobs:
lint:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Set up Ruby
run: ruby/setup-ruby@v1

- name: Install dependencies
run: |
gem install bundler -v 2.4.22
bundle install --jobs 4 --retry 3
- name: Run linters
run: bundle exec rubocop

0 comments on commit 44febab

Please sign in to comment.