Skip to content

Centralize Ruby Version to .ruby-version #41

Centralize Ruby Version to .ruby-version

Centralize Ruby Version to .ruby-version #41

Workflow file for this run

name: CI
on:
push:
jobs:
build:
runs-on: ubuntu-latest
name: Ruby ${{ matrix.version }}
strategy:
matrix:
version: ['2.7', '3.0', '3.1', '3.2', '3.3']
steps:
- uses: actions/checkout@v2
- name: Set up Ruby ${{ matrix.version }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.version }}
bundler-cache: true
- name: Install dependencies
run: bundle
- name: Run Tests
run: bundle exec rake