-
-
Notifications
You must be signed in to change notification settings - Fork 13
42 lines (33 loc) · 963 Bytes
/
rubocop-analysis.yml
File metadata and controls
42 lines (33 loc) · 963 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: "RuboCop"
on: [push]
permissions:
contents: read
security-events: write
jobs:
rubocop:
runs-on: ubuntu-slim
strategy:
fail-fast: false
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ vars.RUBY_VERSION }}
# This step is not necessary if you add the gem to your Gemfile
- name: Install Code Scanning integration
run: bundle add code-scanning-rubocop --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@v4
with:
sarif_file: rubocop.sarif
if: github.event_name == 'pull_request'