NH-94756: dbo for mysql2 #570
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright (c) 2023 SolarWinds, LLC. | |
# All rights reserved. | |
name: RuboCop Analysis | |
on: | |
push: | |
branches: [ "main" ] | |
paths-ignore: | |
- 'test/Dockerfile' | |
- '.github/*' | |
pull_request: | |
branches: [ "main" ] | |
workflow_dispatch: | |
jobs: | |
rubocop: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: '3.1.0' | |
# 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 | |
gem install rubocop | |
gem install rubocop-performance | |
- 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@v3 | |
with: | |
sarif_file: rubocop.sarif |