Add a Rake task to assure the quality of the codebase

This commit is contained in:
Wilson Silva 2023-01-06 11:16:27 +07:00
parent 37f982b23d
commit 0af2766543
No known key found for this signature in database
GPG Key ID: 65135F94E23F82C8
1 changed files with 3 additions and 0 deletions

View File

@ -34,3 +34,6 @@ task :coverage do
Rake::Task['spec'].execute
`open coverage/index.html`
end
desc 'Test, lint and perform security and documentation audits'
task qa: %w[spec rubocop yard:junk verify_measurements bundle:audit]