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

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]