Sha256: 118076137c9e44b31d83b50aec55bb1c057cc71523d6a0b8299c720860ac602f

Contents?: true

Size: 478 Bytes

Versions: 4

Compression:

Stored size: 478 Bytes

Contents

name: Rubocop

on:
  push:
    branches: [master]
  pull_request:
    branches: [master]

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

    steps:
      - uses: actions/checkout@v3
      - uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
          bundler-cache: true
      - name: Ruby linter
        run: bundle exec rubocop

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
resque-scheduler-4.9.0 .github/workflows/rubocop.yml
resque-scheduler-4.8.0 .github/workflows/rubocop.yml
resque-scheduler-4.7.0 .github/workflows/rubocop.yml
resque-scheduler-4.6.0 .github/workflows/rubocop.yml