Skip to content

ci: update

ci: update #31

Workflow file for this run

on:
- push
- pull_request
name: Unit test
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
ruby: [ '3.2', '3.3', '3.4' ]
os:
- windows-latest
- ubuntu-latest
- macos-latest
name: Test on ${{ matrix.os }} with Ruby ${{ matrix.ruby }}
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Install dependencies
run: bundle
- name: Run tests
run: bundle exec rake test