mirror of
https://github.com/Retrospring/retrospring.git
synced 2024-11-20 14:19:53 +01:00
9 lines
207 B
Ruby
9 lines
207 B
Ruby
# frozen_string_literal: true
|
|
|
|
require "simplecov"
|
|
SimpleCov.start "rails"
|
|
|
|
if ENV.key?("GITHUB_ACTIONS")
|
|
require "simplecov-cobertura"
|
|
SimpleCov.formatter = SimpleCov::Formatter::CoberturaFormatter
|
|
end
|