Skip to content

chore: Simplify Rakefile #16

chore: Simplify Rakefile

chore: Simplify Rakefile #16

Workflow file for this run

name: Test
on:
push:
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
ruby: ["2.7", "3.0", "3.1", "3.2", "3.3", "3.4"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Ruby ${{ matrix.ruby }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run Test
run: bundle exec rake