Skip to content

Bump actions/checkout from 3 to 4 #20

Bump actions/checkout from 3 to 4

Bump actions/checkout from 3 to 4 #20

Workflow file for this run

name: CI
on: [push]
jobs:
test:
if: "!contains(github.event.head_commit.message, 'ci skip')"
continue-on-error: ${{ endsWith(matrix.ruby, 'head') || matrix.ruby == 'debug' }}
strategy:
fail-fast: false
matrix:
os: [ubuntu]
ruby: [2.4, 2.5, 2.6, 2.7, '3.0', 3.1, 3.2]
runs-on: ${{ matrix.os }}-latest
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
ruby-version: ${{ matrix.ruby }}
- run: bundle install
- run: bundle exec rspec