Bump puma from 5.6.8 to 6.4.3 in /src/supermarket #3472
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: ctl-cookbook-testing | |
'on': | |
pull_request: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- 'docs-chef-io' | |
jobs: | |
cookstyle: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
working-directory: omnibus | |
ruby-version: 3.1.2 | |
bundler-cache: true | |
- uses: r7kamura/rubocop-problem-matchers-action@v1 # this shows the failures in the PR | |
- name: run cookstyle | |
run: bundle exec cookstyle cookbooks | |
working-directory: omnibus | |
chefspec: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
# once we move the -ctl command to its own gemspec this can be changed back to omnibus like above | |
working-directory: omnibus/cookbooks/omnibus-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 chefspec | |
run: bundle exec rspec | |
working-directory: omnibus/cookbooks/omnibus-supermarket |