Added rubocop for style checking; added woodpecker CI config
All checks were successful
ci/woodpecker/manual/woodpecker Pipeline was successful

This commit is contained in:
Gregory Ballantine
2023-12-08 12:17:13 -05:00
parent 1a363a5862
commit fa9245d7ec
4 changed files with 51 additions and 0 deletions

View File

@ -22,3 +22,10 @@ namespace :server do
system('rerun --no-notify --exit --dir="src/" puma')
end
end
namespace :test do
task :rubocop do
system("rubocop app/ server.rb scan.rb")
end
end