Skip to content

Add images for the readme #292

Add images for the readme

Add images for the readme #292

Workflow file for this run

name: Ruby
on: [push,pull_request]
jobs:
build:
strategy:
matrix:
os: [ ubuntu-latest ]
ruby-version: ['3.0', '3.1', '3.2']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
- name: Install gem dependencies
run: |
gem install bundler
./script/setup
- name: Run the test script
run: ./script/test