Skip to content

Update Ruby versions in CI #53

Update Ruby versions in CI

Update Ruby versions in CI #53

Workflow file for this run

name: Test
on:
- push
- pull_request
jobs:
test:
name: >-
${{ matrix.os }} ${{ matrix.ruby }}
runs-on: ${{ matrix.os }}-latest
strategy:
fail-fast: false
matrix:
os:
- ubuntu
- macos
- windows
ruby:
- "3.0"
- "3.1"
- "3.2"
- head
include:
- { os: windows , ruby: mingw }
- { os: windows , ruby: mswin }
exclude:
- { os: windows , ruby: head }
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true # 'bundle install' and cache gems
- run: bundle exec rake