Skip to content

Merge pull request #3211 from chef/im/update_netlify #3375

Merge pull request #3211 from chef/im/update_netlify

Merge pull request #3211 from chef/im/update_netlify #3375

Workflow file for this run

---
name: lint
'on':
pull_request:
push:
branches:
- main
paths-ignore:
- 'docs-chef-io'
jobs:
chefstyle-supermarket:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
working-directory: src/supermarket
ruby-version: 3.1.2
bundler-cache: true
- uses: r7kamura/rubocop-problem-matchers-action@v1 # this shows the failures in the PR
- name: run chefstyle
run: bundle exec chefstyle
working-directory: src/supermarket
chefstyle-fieri:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
working-directory: src/supermarket/engines/fieri
ruby-version: 3.1.2
bundler-cache: true
- uses: r7kamura/rubocop-problem-matchers-action@v1 # this shows the failures in the PR
- name: run chefstyle
run: bundle exec chefstyle --ignore-parent-exclusion
working-directory: src/supermarket/engines/fieri