Skip to content

Revert inherited code and support chef image based on client version #1

Revert inherited code and support chef image based on client version

Revert inherited code and support chef image based on client version #1

Workflow file for this run

---
name: integration
"on":
pull_request:
push:
branches:
- main
concurrency:
group: integration-${{ github.ref }}
cancel-in-progress: true
jobs:
integration-linux:

Check failure on line 15 in .github/workflows/integration.yml

View workflow run for this annotation

GitHub Actions / integration

Invalid workflow file

The workflow is not valid. .github/workflows/integration.yml (Line: 15, Col: 3): The workflow must contain at least one job with no dependencies.
runs-on: ubuntu-latest
needs: lint-unit
name: Kitchen Verify
strategy:
matrix:
ruby: ["3.3"]
steps:
- uses: actions/checkout@v4
- 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:
CHEF_LICENSE: "accept-no-persist"