Skip to content

Bump actions/checkout from 3 to 4 #47

Bump actions/checkout from 3 to 4

Bump actions/checkout from 3 to 4 #47

Workflow file for this run

name: Tests
on:
push:
pull_request:
workflow_dispatch:
jobs:
build:
strategy:
matrix:
ruby-version:
- "2.6"
- "2.7"
- "3.0"
- "3.1"
- "3.2"
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
- name: Install dependencies
run: bundle install
- name: Run tests
run: bundle exec rake