Skip to content
This repository has been archived by the owner on Feb 26, 2024. It is now read-only.

Update README.md

Update README.md #13

Workflow file for this run

name: Ruby CI
on:
push:
branches:
- master
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version:
- 3.1
- "3.0" # Must be quotes to avoid becoming stringified as "3"
- 2.7
- 2.6
- 2.5
- jruby-9.2
- jruby-9.3
steps:
- uses: actions/checkout@v2
- name: Set up Ruby ${{ matrix.ruby-version }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Run tests
run: bundle exec rake