Skip to content

Update README.md

Update README.md #31

Workflow file for this run

name: Tests
on:
push:
pull_request:
branches:
- main
jobs:
test:
if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.pull_request.user.login == 'dependabot[bot]')
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ['3.3', '3.2', '3.1', '3.0', '2.7']
name: Test with Ruby ${{ matrix.ruby-version }}
steps:
- uses: actions/checkout@v2
- name: Set up Ruby ${{ matrix.ruby-version }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
- name: Run tests with Ruby ${{ matrix.ruby-version }}
run: rake test