Skip to content

Bump rubocop from 1.63.5 to 1.64.0 (#1318) #1074

Bump rubocop from 1.63.5 to 1.64.0 (#1318)

Bump rubocop from 1.63.5 to 1.64.0 (#1318) #1074

Workflow file for this run

name: Documentation
on: [push]
jobs:
documentation:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up latest ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ruby
- name: Install gem dependencies
run: |
gem install bundler
bundle install --jobs 4 --retry 3
- name: Check that yardoc is correct
run: yardoc . --fail-on-warning > yardoc.log
- name: Check that code 100% documented
run: cat yardoc.log | grep -q '100.00% documented'