Don't include steep in the dev-deps #25
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: Quiet Quality | |
on: push | |
permissions: write-all | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Show the merge-base | |
run: git merge-base origin/main ${{ github.sha }} | |
if: github.branch != 'main' | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 3.2 | |
- name: Install gems | |
run: bundle install --jobs 4 --retry 3 | |
- name: Run QuietQuality | |
run: | | |
gem install quiet_quality standard rubocop | |
qq -C .quiet_quality.ci-cd.yml |