Skip to content

Commit

Permalink
Update rubocop.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
hahwul authored Oct 31, 2023
1 parent 033a27c commit 52d7c2f
Showing 1 changed file with 35 additions and 11 deletions.
46 changes: 35 additions & 11 deletions .github/workflows/rubocop.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,40 @@
name: Linters
name: "Rubocop"

on: [push]
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

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

steps:
- uses: actions/checkout@v1
- name: RuboCop Linter
uses: andrewmcodes/rubocop-linter-action@v3.3.0
with:
action_config_path: ".github/config/rubocop_linter_action.yml"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

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

- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2

- name: Install Code Scanning integration
run: bundle add code-scanning-rubocop --version 0.3.0 --skip-install

- 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
uses: github/codeql-action/upload-sarif@v2
with:
sarif_file: rubocop.sarif

0 comments on commit 52d7c2f

Please sign in to comment.