Skip to content

Update actions/checkout action to v4 #18

Update actions/checkout action to v4

Update actions/checkout action to v4 #18

Workflow file for this run

name: build
on:
push:
branches:
- master
# Run tests for any PRs.
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: [2.6, 2.7]
steps:
- uses: actions/checkout@v4
- name: Set up Ruby ${{ matrix.ruby-version }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
- name: gem install
run: gem install minitest timecop
- name: test
run: rake