Skip to content

Update CHANGELOG.md #47

Update CHANGELOG.md

Update CHANGELOG.md #47

Workflow file for this run

name: Build
on:
push:
branches:
- main
pull_request:
jobs:
main:
runs-on: ubuntu-latest
name: Ruby ${{ matrix.ruby }}
env:
BUNDLE_JOBS: 4
BUNDLE_RETRY: 3
strategy:
matrix:
ruby:
- "3.2"
- "3.1"
- "3.0"
- "2.7"
- "2.6"
- "jruby"
- "truffleruby"
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run RSpec
run: bundle exec rspec