Skip to content

Update actions/checkout action to v4 #12

Update actions/checkout action to v4

Update actions/checkout action to v4 #12

Workflow file for this run

name: Build
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
max-parallel: 4
matrix:
ruby-version: [2.7.4, 2.6.8, 3.0.2]
steps:
- uses: actions/checkout@v4
- name: Set up Ruby ${{ matrix.ruby-version }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
- name: Install dependencies
run: bundle install
- name: Run ci
run: make ci