Skip to content

Commit

Permalink
Setup Rubocop
Browse files Browse the repository at this point in the history
  • Loading branch information
exoego committed Aug 25, 2022
1 parent 55d022d commit ee8d5dd
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/rubocop.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: "Rubocop"

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

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

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

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

- 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
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,5 @@ end

group :development do
gem 'pry'
gem "code-scanning-rubocop"
end

0 comments on commit ee8d5dd

Please sign in to comment.