Skip to content

ruby 3.0 and 3.3

ruby 3.0 and 3.3 #133

Workflow file for this run

---
name: rake
'on':
push:
branches:
- master
pull_request:
branches:
- master
jobs:
rake:
name: test
strategy:
matrix:
os: [ubuntu-24.04, macos-15, windows-2022]
ruby: [3.0, 3.3]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle config set --global path "$(pwd)/vendor/bundle"
- run: bundle install
- run: bundle exec rake