Skip to content

update CHANGELOG.md

update CHANGELOG.md #9

Workflow file for this run

name: ci
on: [push]
permissions:
contents: read
jobs:
rspec:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ['2.7', '3.0', '3.1', 'head']
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Run RSpec
run: bundle exec rspec --color