Skip to content

Test Ruby 3.3 on CI #87

Test Ruby 3.3 on CI

Test Ruby 3.3 on CI #87

Workflow file for this run

name: Ruby
on: [push, pull_request]
jobs:
build:
name: build (${{ matrix.ruby }} / ${{ matrix.os }})
strategy:
matrix:
ruby: [2.7, 3.0, 3.1, 3.2, 3.3, head, jruby, jruby-head]
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@master
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Install dependencies
run: bundle install
- name: Run test
run: rspec