fix: add missing space before --profile-ruby and --slow-report flags #151
This file contains hidden or 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: "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" |