Sha256: a77defdce54542f58fb3d5fdbfd9db4d4a81e795ac651d894b4903f2c4a65a1b

Contents?: true

Size: 553 Bytes

Versions: 11

Compression:

Stored size: 553 Bytes

Contents

name: Rubocop

on:
  push:
    branches:
      - main
  pull_request:

jobs:
  rubocop:
    runs-on: ubuntu-latest
    name: Rubocop
    strategy:
      matrix:
        ruby:
          - "2.7"
          - "3.0"
    steps:
      - name: Checkout code
        uses: actions/checkout@v3
      - name: Set up Ruby
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
          bundler-cache: true
      - name: Install dependencies
        run: bundle install
      - name: Analyze code
        run: bundle exec rubocop

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
cpl-0.7.0 .github/workflows/rubocop.yml
cpl-0.6.0 .github/workflows/rubocop.yml
cpl-0.5.1 .github/workflows/rubocop.yml
cpl-0.5.0 .github/workflows/rubocop.yml
cpl-0.4.1 .github/workflows/rubocop.yml
cpl-0.4.0 .github/workflows/rubocop.yml
cpl-0.3.3 .github/workflows/rubocop.yml
cpl-0.3.2 .github/workflows/rubocop.yml
cpl-0.3.1 .github/workflows/rubocop.yml
cpl-0.3.0 .github/workflows/rubocop.yml
cpl-0.2.0 .github/workflows/rubocop.yml