Add github action for rspec

This commit is contained in:
Sven Weidauer 2022-06-05 12:57:27 +02:00
parent 3711acbec3
commit 64d2eb9a43
3 changed files with 39 additions and 0 deletions

View file

@ -24,3 +24,7 @@ end
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec)
RSpec::Core::RakeTask.new(:spec_github) do |t|
t.rspec_opts = '--format RspecJunitFormatter --out rspec.xml'
end