Brakeman runner handles overrides correctly #221
Workflow file for this run
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
name: QuietQuality Itself | |
on: [push] | |
jobs: | |
QuietQuality: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 3.2 | |
- name: Cache gems | |
uses: actions/cache@v3 | |
with: | |
path: vendor/bundle | |
key: ${{ runner.os }}-dogfood-${{ hashFiles('Gemfile.lock') }} | |
restore-keys: | |
${{ runner.os }}-dogfood- | |
- name: Install gems | |
run: bundle install --jobs 4 --retry 3 | |
- name: Run QuietQuality | |
run: bundle exec bin/qq -C .quiet_quality.ci.yml |