Sha256: 5da0718c7077fc54ff1b0a7057ba2d478d7e8543e45eac074fc9d29450dc372e

Contents?: true

Size: 642 Bytes

Versions: 3

Compression:

Stored size: 642 Bytes

Contents

name: Format & Lint & Build & Analysis

on:
  merge_group:
  pull_request:
  workflow_dispatch:
  workflow_call:

jobs:
  rubocop:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v4
      - uses: ruby/setup-ruby@v1
        with:
          bundler-cache: true
      - name: Run rubocop
        run: bundle exec rubocop -f github

  bundler-audit:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v4
      - uses: ruby/setup-ruby@v1
        with:
          bundler-cache: true
      - name: Run bundler-audit
        run: bundle exec bundler-audit --update

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
dashbrains-rubocop-config-1.0.6 .github/workflows/lint_format.yml
dashbrains-rubocop-config-1.0.5 .github/workflows/lint_format.yml
dashbrains-rubocop-config-1.0.4 .github/workflows/lint_format.yml