Skip to content

Bump actions/checkout from 3 to 4 #25

Bump actions/checkout from 3 to 4

Bump actions/checkout from 3 to 4 #25

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ 'ubuntu-latest', 'macos-latest', 'windows-latest' ]
ruby: [ 'head', '3.1', '3.0', '2.7', '2.6', '2.5' ]
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run test
run: rake test