Sha256: 4a05a43dd53adc6e1781db3bd100f09019f899546e5731b84c936e9eb9d4ba73

Contents?: true

Size: 662 Bytes

Versions: 2

Compression:

Stored size: 662 Bytes

Contents

name: Rubocop

on: push

jobs:
  rubocop:
    runs-on: ubuntu-latest

    steps:
      - uses: actions/checkout@v2
      - uses: actions/setup-ruby@v1
        with:
          ruby-version: 3.0.0
      - name: Cache Ruby Gems
        uses: actions/cache@v2
        with:
          path: /.tmp/vendor/bundle
          key: ${{ runner.os }}-gems-latest-${{ hashFiles('**/Gemfile.lock') }}
          restore-keys: |
            ${{ runner.os }}-gems-latest-
      - name: Bundle Install
        run: |
          bundle config path /.tmp/vendor/bundle
          bundle install --jobs 4 --retry 3
      - name: Run Rubocop
        run: |
          bundle exec rubocop

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
dhs-1.0.1 .github/workflows/rubocop.yml
dhs-1.0.0 .github/workflows/rubocop.yml