Tiny comment improvement #126
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
name: rake test | |
on: | |
push: | |
branches: ["5-stable"] | |
pull_request: | |
branches: ["*"] | |
jobs: | |
test-cruby: | |
name: rake test with CRuby ${{ matrix.cruby }} | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
cruby: ["2.4", "3.3"] | |
steps: | |
- name: Checkout the repository(CRuby) | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.head.ref }} | |
- name: Setup CRuby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.cruby }} | |
- name: Install minitest | |
run: gem install minitest -v 5.15.0 | |
- name: Install oj | |
run: gem install oj -v 3.10.0 | |
- name: Install bundle and rake | |
run: gem install bundle rake | |
- name: Check the CRuby version | |
run: ruby -v | |
- name: Execute public tests | |
run: rake publictest | |
test-jruby: | |
name: rake test with JRuby ${{ matrix.jruby }} | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
jruby: ["jruby-9.2", "jruby-9.4"] | |
steps: | |
- name: Checkout the repository(JRuby) | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.head.ref }} | |
- name: Setup JRuby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.jruby }} | |
- name: Install minitest | |
run: gem install minitest -v 5.15.0 | |
- name: Install bundle, rake, and jrjackson | |
run: gem install bundle rake jrjackson | |
- name: Check the JRuby version | |
run: jruby -v | |
- name: Execute public tests | |
run: rake publictest | |