Skip to content

Bump rubocop-factory_bot from 2.23.1 to 2.24.0 #665

Bump rubocop-factory_bot from 2.23.1 to 2.24.0

Bump rubocop-factory_bot from 2.23.1 to 2.24.0 #665

Workflow file for this run

name: Ruby
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Ruby 3.2
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2
- name: Build and test with Rake
env:
BUGZILLA_API_KEY: ${{ secrets.BUGZILLA_API_KEY }}
run: |
gem install bundler
bundle install --jobs 4 --retry 3
bundle exec rake
- name: Check `simplecov` result line coverage
run: cat coverage/.last_run.json | jq '.result.line' | grep -q '100'
- name: Check source files using `rubocop`
run: rubocop
- name: Check that code 100% documented
run: yardoc . | grep -q '100.00% documented'