Skip to content

docs: update CHANGELOG #8

docs: update CHANGELOG

docs: update CHANGELOG #8

Workflow file for this run

name: test
on:
workflow_dispatch:
schedule:
- cron: '3 0 2 * *'
push:
jobs:
test:
runs-on: ubuntu-latest
name: Ruby ${{ matrix.ruby }}
strategy:
matrix:
ruby:
- '2.7'
- '3.0'
- '3.1'
- '3.2'
- '3.3'
steps:
- uses: actions/checkout@v4
- name: Set up RUby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: lint
run: bundle exec rake standard
- name: test
run: bundle exec rake spec