Skip to content

Some bits of cleanup, that is all. #28

Some bits of cleanup, that is all.

Some bits of cleanup, that is all. #28

Workflow file for this run

name: Ruby
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
name: Ruby ${{ matrix.ruby }}
strategy:
matrix:
ruby:
- '3.0.4'
steps:
- uses: actions/checkout@v2
- name: Set up Ruby w/o bundler
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler: none
bundler-cache: false
- name: Install versionary manually in vendor/bundle/ruby/3.0.0
run: |
gem install --no-user-install --install-dir vendor/bundle/ruby/3.0.0 versionomy
- name: Set up Ruby normally now
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Build the documentation
run: bundle exec rake doc:yard
# Local Variables:
# mode: yaml
# eval: (if (intern-soft "fci-mode") (fci-mode 1))
# End: