Sha256: 37028575325d738c986e9c43cad76378fdc26c060493f1071ebb218e29c87100

Contents?: true

Size: 464 Bytes

Versions: 1

Compression:

Stored size: 464 Bytes

Contents

name: 'Lint'

on: push

jobs:
  run-rubocop:
    name: Lint code
    strategy:
      fail-fast: false
      matrix:
        rubyVersion: ["2.7.6"]
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
      - uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.rubyVersion }}
          bundler-cache: true
          cache-version: "${{ matrix.rubyVersion }}-v1x-0"
      - name: Run RuboCop
        run: bundle exec rubocop

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
instrument_all_the_things-1.4.0 .github/workflows/lint.yaml