Use require_relative instead of require for same-gem requires #9
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Ruby CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@6cecb48364174b0952995175c55f9bf5527e6682 | |
with: | |
ruby-version: '2.7' | |
bundler-cache: true | |
- name: Run tests | |
run: bundle exec rake |