Sha256: 203d62b66c09412c4725d4516347bf45c27873df899fcc4063d4e3fb3245f9b1

Contents?: true

Size: 437 Bytes

Versions: 4

Compression:

Stored size: 437 Bytes

Contents

name: Ruby Linter

on:
  pull_request:
    paths:
      - '*.rb'
      - '!bin/**'

jobs:
  lint:
    name: Lint
    runs-on: ubuntu-latest

    steps:
      - name: Checkout code
        uses: actions/checkout@v2

      - name: Set up Ruby
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: '3.1'
          bundler-cache: true

      - name: Run Standard Ruby linter
        run: bin/standardrb --no-fix --fail-fast

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
capybara-screenshot-diff-1.6.3 .github/workflows/lint.yml
capybara-screenshot-diff-1.6.2 .github/workflows/lint.yml
capybara-screenshot-diff-1.6.1 .github/workflows/lint.yml
capybara-screenshot-diff-1.6.0 .github/workflows/lint.yml