Allow the suppression of other values in a key for the "before" report #11280
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: unit_specs | |
"on": | |
pull_request: | |
push: | |
branches: | |
- main | |
concurrency: | |
group: unit-specs-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
unit: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
clean: true | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: "3.1.6" | |
bundler-cache: false | |
- run: bundle install | |
- run: bundle exec rake spec:unit | |
- run: bundle exec rake component_specs |