Skip to content

Merge pull request #2047 from Shopify/fix-webhook-generator-issue #5058

Merge pull request #2047 from Shopify/fix-webhook-generator-issue

Merge pull request #2047 from Shopify/fix-webhook-generator-issue #5058

Workflow file for this run

name: RuboCop
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- name: Set up Ruby
uses: ruby/setup-ruby@efbf473cab83af4468e8606cc33eca9281bb213f # v1.256.0
with:
bundler-cache: true
- name: Install gems
run: |
bundle config path vendor/bundle
bundle config set without 'default development test'
bundle install --jobs 4 --retry 3
- name: Run RuboCop
run: bundle exec rubocop --parallel