Sha256: d5c45d2c77e5ef940f757f49b233d8cf61a9ba90a167b93501395a6e7dc8eba7

Contents?: true

Size: 698 Bytes

Versions: 15

Compression:

Stored size: 698 Bytes

Contents

name: RuboCop

on: [push, pull_request]

jobs:
  build:
    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v2
    - name: Set up Ruby 2.7
      uses: ruby/setup-ruby@v1
      with:
        ruby-version: 2.7
    - name: Cache gems
      uses: actions/cache@v1
      with:
        path: vendor/bundle
        key: ${{ runner.os }}-rubocop-${{ hashFiles('**/Gemfile.lock') }}
        restore-keys: |
          ${{ runner.os }}-rubocop-
    - 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

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
shopify_app-15.0.1 .github/workflows/rubocop.yml
shopify_app-15.0.0 .github/workflows/rubocop.yml
shopify_app-14.4.4 .github/workflows/rubocop.yml
shopify_app-14.4.3 .github/workflows/rubocop.yml
shopify_app-14.4.2 .github/workflows/rubocop.yml
shopify_app-14.4.1 .github/workflows/rubocop.yml
shopify_app-14.4.0 .github/workflows/rubocop.yml
shopify_app-14.3.0 .github/workflows/rubocop.yml
shopify_app-14.2.0 .github/workflows/rubocop.yml
shopify_app-14.1.0 .github/workflows/rubocop.yml
shopify_app-14.0.0 .github/workflows/rubocop.yml
shopify_app-13.5.0 .github/workflows/rubocop.yml
shopify_app-13.4.1 .github/workflows/rubocop.yml
shopify_app-13.4.0 .github/workflows/rubocop.yml
shopify_app-13.3.0 .github/workflows/rubocop.yml