Skip to content

Merge pull request #209 from nishidayuya/docs_fix_broken_hyperlink #209

Merge pull request #209 from nishidayuya/docs_fix_broken_hyperlink

Merge pull request #209 from nishidayuya/docs_fix_broken_hyperlink #209

Workflow file for this run

name: ubuntu
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: [3.1, 3.0, 2.7]
steps:
- uses: actions/checkout@master
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Install dependencies
run: |
gem install bundler --no-document
bundle install
- name: Run test
run: bundle exec rake test