Skip to content

Allow the suppression of other values in a key for the "before" report #11897

Allow the suppression of other values in a key for the "before" report

Allow the suppression of other values in a key for the "before" report #11897

Workflow file for this run

---
name: lint
on:
pull_request:
push:
branches:
- main
concurrency:
group: lint-${{ github.ref }}
cancel-in-progress: true
jobs:
chefstyle:
runs-on: ubuntu-latest
env:
BUNDLE_WITHOUT: ruby_shadow:omnibus_package
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: 3.1
bundler-cache: false
- uses: r7kamura/rubocop-problem-matchers-action@v1 # this shows the failures in the PR
- run: |
gem install chefstyle
chefstyle -c .rubocop.yml
spellcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: |
curl --location 'https://raw.githubusercontent.com/chef/chef_dictionary/main/chef.txt' --output chef_dictionary.txt
- uses: streetsidesoftware/cspell-action@v2.12.0