Skip to content

Bump actions/checkout from 4 to 5 #20

Bump actions/checkout from 4 to 5

Bump actions/checkout from 4 to 5 #20

Workflow file for this run

name: test
on: [push, pull_request]
jobs:
test:
strategy:
matrix:
ruby: [ '3.0', 2.7, 2.6, 2.5, 2.4, head ]
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v5
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Install dependencies
run: bundle install
- name: Run test
run: rake