Skip to content

Update chefstyle requirement from = 2.2.0 to = 2.2.3 #58

Update chefstyle requirement from = 2.2.0 to = 2.2.3

Update chefstyle requirement from = 2.2.0 to = 2.2.3 #58

Workflow file for this run

---
name: unit
'on':
pull_request:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ['2.6', '2.7', '3.0']
name: Unit test on ${{ matrix.os }} with Ruby ${{ matrix.ruby }}
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle exec rake spec