Skip to content

Preparing for next developer iteration, 0.7.2. #27

Preparing for next developer iteration, 0.7.2.

Preparing for next developer iteration, 0.7.2. #27

Workflow file for this run

name: Test
on: [ push, pull_request ]
jobs:
test:
name: Test (Ruby ${{ matrix.ruby-version }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby-version: [ '2.7', '3.1', '3.3' ]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Run test
run: bundle exec rake spec