Add --ri-system #222
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: build | |
on: | |
push: | |
pull_request: | |
schedule: | |
- cron: "30 14 * * *" | |
jobs: | |
ruby-versions: | |
uses: ruby/actions/.github/workflows/ruby_versions.yml@master | |
with: | |
engine: cruby-truffleruby | |
min_version: 2.7 | |
vterm-yamatanooroti: | |
needs: ruby-versions | |
name: >- | |
vterm-yamatanooroti ${{ matrix.ruby }} ${{ matrix.with_latest_reline && '(latest reline)' || '' }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
ruby: ['3.2', 'head'] | |
with_latest_reline: [true] | |
fail-fast: false | |
env: | |
WITH_LATEST_RELINE: ${{matrix.with_latest_reline}} | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
- name: Install dependencies | |
run: | | |
gem install bundler --no-document | |
gem rdoc --all --ri --ri-system --no-rdoc | |
WITH_VTERM=1 bundle install | |
- name: rake test_yamatanooroti | |
run: WITH_VTERM=1 bundle exec rake test_yamatanooroti |