run tests with rake

This commit is contained in:
Ryan Cavicchioni 2025-03-11 05:01:15 -05:00
parent 70cd5d6247
commit 38f92507f6
Signed by: ryanc
SSH Key Fingerprint: SHA256:KbXiwUnZnHFwFtt3Bytd+F3FN9pPHn1Z1cxMIE1TPbg
2 changed files with 12 additions and 2 deletions

View File

@ -38,8 +38,7 @@ jobs:
ruby-version: '3.4'
bundler-cache: true
- run: bundle exec rspec
- run: bundle exec rake
release-image:
needs: test

11
Rakefile Normal file
View File

@ -0,0 +1,11 @@
begin
require "rspec/core/rake_task"
RSpec::Core::RakeTask.new(:spec)
rescue LoadError
end
require "minitest/test_task"
Minitest::TestTask.create
task default: [:test, :spec]