Sha256: f3210b6dfa203efca04dd9464a4266199e16ce6d6449db91919caa87b7ebc07c

Contents?: true

Size: 627 Bytes

Versions: 1

Compression:

Stored size: 627 Bytes

Contents

name: Lint

on:
  push:
    branches:
      - master
    paths:
      - "gemfiles/*"
      - "Gemfile"
      - "**/*.rb"
      - "**/*.gemspec"
      - ".github/workflows/lint.yml"
  pull_request:
    paths:
      - "gemfiles/*"
      - "Gemfile"
      - "**/*.rb"
      - "**/*.gemspec"
      - ".github/workflows/lint.yml"

jobs:
  rubocop:
    name: "RuboCop"
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
      - uses: ruby/setup-ruby@v1
        with:
          ruby-version: 3.2
          bundler-cache: true
      - name: Lint Ruby code with RuboCop
        run: |
          bundle exec rubocop

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
yabeda-http_requests-0.2.1 .github/workflows/lint.yaml