Skip to content
This repository was archived by the owner on May 16, 2025. It is now read-only.

Update README.md

Update README.md #28

Workflow file for this run

name: Unit Tests
on: [push, pull_request_target]
jobs:
rake:
name: Rake (Ruby ${{ matrix.ruby-version }})
runs-on: ubuntu-latest
# always run on push events
# only run on pull_request_target event when pull request pulls from fork repository
if: >
github.event_name == 'push' ||
github.event_name == 'pull_request_target' && github.event.pull_request.head.repo.full_name != github.repository
strategy:
fail-fast: false
matrix:
ruby-version: [2.7, 2.6, 2.5, 2.4]
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1.57.0
with:
bundler: Gemfile.lock
bundler-cache: true
ruby-version: ${{ matrix.ruby-version }}
- run: bundle exec rake test