Skip to content

Bump version to 2.2.3 by Chef Expeditor #38

Bump version to 2.2.3 by Chef Expeditor

Bump version to 2.2.3 by Chef Expeditor #38

Workflow file for this run

---
name: unit
'on':
pull_request:
push:
branches:
- main
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [windows-2019, ubuntu-latest]
ruby: ['2.5', '2.6', '2.7', '3.0']
runs-on: ${{ matrix.os }}
env:
BUNDLE_WITHOUT: profiling debug docs
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