Sha256: cabe2d4d213536e2e4ab1c5959a0689673787659be52205882c1f567a941d54c

Contents?: true

Size: 710 Bytes

Versions: 10

Compression:

Stored size: 710 Bytes

Contents

name: rubocop

on:
  pull_request:
    types: [opened, synchronize]
  push:
    branches: [ main ]

jobs:
  build:
    runs-on: ubuntu-latest
    timeout-minutes: 10

    steps:
    - uses: actions/checkout@v3
    - name: setup ruby
      uses: ruby/setup-ruby@v1
      with:
        ruby-version: '2.7'
    - name: cache gems
      uses: actions/cache@v3
      with:
        path: vendor/bundle
        key: ${{ runner.os }}-rubocop-${{ hashFiles('**/Gemfile.lock') }}
        restore-keys: ${{ runner.os }}-rubocop-
    - name: install gems
      run: |
        bundle config set path vendor/bundle
        bundle install --jobs 4 --retry 3
    - name: exec rubocop
      run: bundle exec rubocop --parallel

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
activerecord-spanner-adapter-1.4.4 .github/workflows/rubocop.yaml
activerecord-spanner-adapter-1.4.3 .github/workflows/rubocop.yaml
activerecord-spanner-adapter-1.4.2 .github/workflows/rubocop.yaml
activerecord-spanner-adapter-1.4.1 .github/workflows/rubocop.yaml
activerecord-spanner-adapter-1.4.0 .github/workflows/rubocop.yaml
activerecord-spanner-adapter-1.3.1 .github/workflows/rubocop.yaml
activerecord-spanner-adapter-1.2.2 .github/workflows/rubocop.yaml
activerecord-spanner-adapter-1.2.1 .github/workflows/rubocop.yaml
activerecord-spanner-adapter-1.2.0 .github/workflows/rubocop.yaml
activerecord-spanner-adapter-1.1.0 .github/workflows/rubocop.yaml