Skip to content

Commit

Permalink
adding rubocop as a github action
Browse files Browse the repository at this point in the history
  • Loading branch information
Esity committed Jun 4, 2021
1 parent a5b228b commit 5353bc0
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/rubocop-analysis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: "Rubocop"

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
schedule:
- cron: '41 13 * * 4'

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

steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.6

- 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@v1
with:
sarif_file: rubocop.sarif

0 comments on commit 5353bc0

Please sign in to comment.