Run
bash github_actions_helper.sh
to check GitHub actions errors
OR
Run the following command to check for RuboCop offenses
bundle exec rubocop Ensure test db works
bin/rails db:test:prepareThen run
bin/rails testadd annotate in Gemfile
group :development do
gem "annotate"
endThen install
bundle installInstall annotate configuration
bin/rails generate annotate:installAdd annotate to existing models
bundle exec annotateIf you run into File.exists?('./Rakefile') error when running bundle exec annotate, then Run
bundle exec ruby script/fix_annotate.rbto patch annotate when using latest version of rails and ruby.