Skip to content

test: add add tests against Ruby 2.7 - 3.3 #1

test: add add tests against Ruby 2.7 - 3.3

test: add add tests against Ruby 2.7 - 3.3 #1

Workflow file for this run

name: test
on:
workflow_dispatch:
push:
jobs:
test:
runs-on: ubuntu-latest
name: Ruby ${{ matrix.ruby }}
strategy:
matrix:
ruby:
- '2.7'
- '3.1'
- '3.2'
- '3.3'
steps:
- uses: actions/checkout@v4
- name: Set up RUby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: lint
run: bundle exec rake standard
- name: test
run: bundle exec rake spec