Sha256: f17a66552e140ff84d1cdeb1e2e382ca909b9fa80b9e361de94445286b52ff7b

Contents?: true

Size: 462 Bytes

Versions: 2

Compression:

Stored size: 462 Bytes

Contents

name: RuboCop
on: [push, pull_request]
jobs:
  build:
    strategy:
      matrix:
        ruby: [3.0]
    runs-on: ubuntu-latest
    name: rubocop
    steps:
      - uses: actions/checkout@v2
      - name: Set up Ruby ${{ matrix.ruby }}
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
      - name: bundle install
        run: 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
jekyll-toc-0.17.1 .github/workflows/rubocop.yml
jekyll-toc-0.17.0 .github/workflows/rubocop.yml