Sha256: b78a9b63ac4b67a3a74add651b8951e4ab5b199e9ca49dc5ca435a5e1693cec6

Contents?: true

Size: 712 Bytes

Versions: 4

Compression:

Stored size: 712 Bytes

Contents

name: rubocop

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

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

    steps:
    - uses: actions/checkout@v2
    - name: setup ruby
      uses: ruby/setup-ruby@v1
      with:
        ruby-version: '2.5'
    - 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 set path vendor/bundle
        bundle install --jobs 4 --retry 3
    - name: exec rubocop
      run: bundle exec rubocop --parallel

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
activerecord-spanner-adapter-1.0.0 .github/workflows/rubocop.yaml
activerecord-spanner-adapter-0.7.0 .github/workflows/rubocop.yaml
activerecord-spanner-adapter-0.6.0 .github/workflows/rubocop.yaml
activerecord-spanner-adapter-0.5.0 .github/workflows/rubocop.yaml