Skip to content

Bump actions/checkout from 4.2.2 to 6.0.1 #47

Bump actions/checkout from 4.2.2 to 6.0.1

Bump actions/checkout from 4.2.2 to 6.0.1 #47

Workflow file for this run

name: CI
on:
pull_request:
branches:
- '**'
push:
branches:
- main
jobs:
build:
name: Ruby ${{ matrix.version }}
runs-on: ubuntu-latest
strategy:
matrix:
version: [ '2.7', '3.0', '3.1', '3.2', '3.3' ]
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- name: Set up Ruby ${{ matrix.version }}
uses: ruby/setup-ruby@e34163cd15f4bb403dcd72d98e295997e6a55798 # v1.238.0
with:
ruby-version: ${{ matrix.version }}
bundler-cache: true
- name: Test
run: bundle exec rake test