Skip to content

feat: Require Ruby 3.2 or later + misc cleanup #81

feat: Require Ruby 3.2 or later + misc cleanup

feat: Require Ruby 3.2 or later + misc cleanup #81

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
with:
bundle_only: "linting"
integration:
runs-on: ubuntu-latest
needs: lint-unit
name: Kitchen Verify
strategy:
matrix:
ruby: ["3.3"]
steps:
- uses: actions/checkout@v5
- 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"