Skip to content

Bump up 5.3.0

Bump up 5.3.0 #63

Workflow file for this run

name: ubuntu
on: [push, pull_request]
jobs:
build:
name: build ${{ matrix.ruby }}
strategy:
matrix:
ruby: [ '3.3', '3.2', '3.1', '3.0' ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Install dependencies
run: |
bundle install
- name: Run test
run: bundle exec rake spec