Sha256: f5aef087180f3a1021a523814f131d95ae9ab3e03fc84bbafdcfff0f23dc007b

Contents?: true

Size: 1.31 KB

Versions: 9

Compression:

Stored size: 1.31 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: 2.7

    - 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

9 entries across 9 versions & 1 rubygems

Version Path
briard-2.7.1 .github/workflows/rubocop.yml
briard-2.7.0 .github/workflows/rubocop.yml
briard-2.6.7 .github/workflows/rubocop.yml
briard-2.6.6 .github/workflows/rubocop.yml
briard-2.6.5 .github/workflows/rubocop.yml
briard-2.6.4 .github/workflows/rubocop.yml
briard-2.6.2 .github/workflows/rubocop.yml
briard-2.6.1 .github/workflows/rubocop.yml
briard-2.6.0 .github/workflows/rubocop.yml