Sha256: d6eb814b100156f5efa8a83263a3b5f2615e243216a981a468554ab25c9ec6ac

Contents?: true

Size: 1.3 KB

Versions: 73

Compression:

Stored size: 1.3 KB

Contents

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.

# pulled from repo
name: "Rubocop"

on:
  push:
    branches: [ "master" ]
  pull_request:
    # The branches below must be a subset of the branches above
    branches: [ "master" ]
  schedule:
    - cron: '33 21 * * 2'

jobs:
  rubocop:
    runs-on: ubuntu-latest
    strategy:
      fail-fast: false

    steps:
    - name: Checkout repository
      uses: actions/checkout@v3

    # If running on a self-hosted runner, check it meets the requirements
    # listed at https://github.com/ruby/setup-ruby#using-self-hosted-runners
    - name: Set up Ruby
      uses: ruby/setup-ruby@v1
      with:
        ruby-version: 3.2

    - name: Install dependencies
      run: bundle install

    - name: RuboCop run
      run: |
        bash -c "
          bundle exec rubocop --require code_scanning --format CodeScanning::SarifFormatter -o rubocop.sarif
          [[ $? -ne 2 ]]
        "

    - name: Upload Sarif output
      if: steps.check_files.outputs.files_exists == 'true'
      uses: github/codeql-action/upload-sarif@v2
      with:
        # Path to SARIF file relative to the root of the repository
        sarif_file: rubocop.sarif

Version data entries

73 entries across 73 versions & 1 rubygems

Version Path
commonmeta-ruby-3.13 .github/workflows/rubocop.yml
commonmeta-ruby-3.12.1 .github/workflows/rubocop.yml
commonmeta-ruby-3.12.0 .github/workflows/rubocop.yml
commonmeta-ruby-3.11.0 .github/workflows/rubocop.yml
commonmeta-ruby-3.9.0 .github/workflows/rubocop.yml
commonmeta-ruby-3.8.3 .github/workflows/rubocop.yml
commonmeta-ruby-3.8.2 .github/workflows/rubocop.yml
commonmeta-ruby-3.8.1 .github/workflows/rubocop.yml
commonmeta-ruby-3.8.0 .github/workflows/rubocop.yml
commonmeta-ruby-3.7.3 .github/workflows/rubocop.yml
commonmeta-ruby-3.7.2 .github/workflows/rubocop.yml
commonmeta-ruby-3.7.1 .github/workflows/rubocop.yml
commonmeta-ruby-3.7.0 .github/workflows/rubocop.yml
commonmeta-ruby-3.6.1 .github/workflows/rubocop.yml
commonmeta-ruby-3.6 .github/workflows/rubocop.yml
commonmeta-ruby-3.5.5 .github/workflows/rubocop.yml
commonmeta-ruby-3.5.4 .github/workflows/rubocop.yml
commonmeta-ruby-3.5.3 .github/workflows/rubocop.yml
commonmeta-ruby-3.5.2 .github/workflows/rubocop.yml
commonmeta-ruby-3.5.1 .github/workflows/rubocop.yml