Skip to content

Bump actions/checkout from 3 to 4 #136

Bump actions/checkout from 3 to 4

Bump actions/checkout from 3 to 4 #136

Workflow file for this run

name: Build + Test
on: [pull_request, push]
jobs:
build:
name: Build + Test
runs-on: ubuntu-latest
strategy:
matrix:
ruby: [ '2.6', '2.7', '3.0', '3.1', '3.2' ]
steps:
- uses: actions/checkout@v4
- name: Set up Ruby ${{ matrix.ruby }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Build and test with Rake
run: |
gem install bundler
bundle install --jobs 4 --retry 3 --without guard
bundle exec rspec spec
bundle exec rubocop