Update kitchen-vagrant requirement from ~> 1.14.0 to ~> 2.0.0 #208
Workflow file for this run
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
on: | |
push: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
chef: | |
- 15 | |
- 16 | |
- 17 | |
- 18 | |
platform: | |
- centos-7 | |
- centos-8 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 2.7 | |
bundler-cache: true | |
- name: Run Unit tests | |
run: | | |
bundle exec rake lint | |
- name: Run Integration tests | |
run: | | |
bundle exec kitchen test | |
env: | |
CHEF_LICENSE: accept-no-persist | |
CHEF_VERSION: ${{ matrix.chef }} | |
KITCHEN_YAML: kitchen.dokken.yml | |
PLATFORM_VERSION: ${{ matrix.platform }} |