Bump version to 15.0.28 by Chef Expeditor #110
This file contains hidden or 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
| name: Unit Test | |
| on: | |
| - push | |
| - pull_request | |
| jobs: | |
| test: | |
| runs-on: ${{ matrix.os }} | |
| continue-on-error: ${{ matrix.experimental }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| ruby: [ '3.1' , '3.4' ] | |
| os: | |
| - windows-latest | |
| - ubuntu-latest | |
| experimental: [false] | |
| name: Unit testing with Ruby ${{ matrix.ruby }} on ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: ${{ matrix.ruby }} | |
| - name: Install | |
| run: | | |
| ruby --version | |
| gem --version | |
| gem install bundler rake | |
| bundle install --jobs 4 --retry 3 | |
| - name: Unit Test | |
| run: | | |
| bundle exec rake |