mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-01-19 01:16:03 +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
|