Skip to content

Update actions/checkout action to v4 #13

Update actions/checkout action to v4

Update actions/checkout action to v4 #13

Workflow file for this run

name: Ruby
on: [pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Ruby 2.6
uses: actions/setup-ruby@v1
with:
ruby-version: 2.6.x
- name: Build and test with Rake
run: |
gem install bundler -v 2.0.2
bundle install --jobs 4 --retry 3
bundle exec rake test