Sha256: d412a8eaeab2e81dcc69064db634caa8329c8c5a824cd2867f3a4faee52ca0ba

Contents?: true

Size: 469 Bytes

Versions: 3

Compression:

Stored size: 469 Bytes

Contents

name: Rubocop

on: [push, pull_request]

jobs:
  rubocop:
    name: Rubocop
    runs-on: ${{ matrix.os }}
    strategy:
      matrix:
        os: [ubuntu-latest]
        ruby: ['2.7', '3.0']

    steps:
      - uses: actions/checkout@v4
        with:
          persist-credentials: false
      - uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
          bundler-cache: true

      - name: Ruby rubocop
        run: bundle exec rubocop

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
shakapacker-7.2.0 .github/workflows/rubocop.yml
shakapacker-7.2.0.rc.0 .github/workflows/rubocop.yml
shakapacker-7.1.0 .github/workflows/rubocop.yml