Skip to content

fix: add missing space before --profile-ruby and --slow-report flags #151

fix: add missing space before --profile-ruby and --slow-report flags

fix: add missing space before --profile-ruby and --slow-report flags #151

Workflow file for this run

---
name: "Lint, Unit & Integration Tests"
"on":
pull_request:
jobs:
lint-unit:
uses: test-kitchen/.github/.github/workflows/lint-unit.yml@main
integration:
runs-on: ubuntu-latest
needs: lint-unit
name: Kitchen Verify
strategy:
matrix:
ruby: ["3.1", "3.4"]
steps:
- uses: actions/checkout@v6
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Create & Validate containers
run: |
bundle exec bundle exec kitchen create hello
bundle exec bundle exec kitchen test helloagain
bundle exec bundle exec kitchen destroy hello
env:
# This needs to be set for all phases, including the verify phase
CHEF_LICENSE: "accept"