Skip to content

Bump rubocop-performance from 1.22.1 to 1.23.0 (#353) #828

Bump rubocop-performance from 1.22.1 to 1.23.0 (#353)

Bump rubocop-performance from 1.22.1 to 1.23.0 (#353) #828

Workflow file for this run

name: Ruby
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Ruby 3.3
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.3
- name: Install dependencies
run: |
gem install bundler
bundle install --jobs 4 --retry 3
- name: Check source files using `rubocop`
run: rubocop
- name: Check that code 100% documented
run:
yardoc . | grep -q '100.00% documented'