diff --git a/lib/coverage_report.rb b/lib/coverage_report.rb index 504fb2a..3f3b333 100644 --- a/lib/coverage_report.rb +++ b/lib/coverage_report.rb @@ -20,6 +20,9 @@ class CoverageReport end def lcov(report_path, data) + puts `ls /github/workspace` + puts `ls /github/home` + puts `ls /github/workflow` lcov = LcovParse.new(File.read("/github/workspace/#{report_path}")) { 'lines' => { 'covered_percent' => lcov.covered_percent, 'minumum_percent' => data[:min] } } end