Skip to content

Bump version to 1.4.0 #41

Bump version to 1.4.0

Bump version to 1.4.0 #41

Workflow file for this run

name: Ruby CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ruby_version: [ '3.1', '3.2', '3.3', '3.4', '4.0' ]
name: Ruby ${{ matrix.ruby_version }}
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby_version }}
bundler-cache: true
- name: Run unit tests
run: bundle exec rake spec:unit