Skip to content

Use chef 17 for 3.0 tests, chef 18 for 3.1 tests #91

Use chef 17 for 3.0 tests, chef 18 for 3.1 tests

Use chef 17 for 3.0 tests, chef 18 for 3.1 tests #91

Workflow file for this run

---
name: unit_specs
"on":
pull_request:
push:
branches:
- main
jobs:
unit:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
# Due to https://github.com/actions/runner/issues/849, we have to use quotes for '3.0'
ruby: ['3.0', '3.1']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle exec rake spec