-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
go-coverage-action
committed
May 22, 2024
1 parent
b4592f0
commit 0254c11
Showing
7 changed files
with
155 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
40 changes: 40 additions & 0 deletions
40
go-test-app-02/revisions/2dcfc86a82f2f9b1dfa2d3c90895dbebe42b2e43-inc.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
|
||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | ||
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" /> | ||
<meta http-equiv="Pragma" content="no-cache" /> | ||
<meta http-equiv="Expires" content="0" /> | ||
<title>Go Coverage Report</title> | ||
<script src="../index.js?051cc5cf91bdb3d0065a198fc178cfe0"></script> | ||
</head> | ||
<body> | ||
<div id="topbar"> | ||
<div id="nav"> | ||
<select id="files"> | ||
|
||
</select> | ||
</div> | ||
<div id="legend"> | ||
<span>not tracked</span> | ||
|
||
<span class="cov0">no coverage</span> | ||
<span class="cov1">low coverage</span> | ||
<span class="cov2">*</span> | ||
<span class="cov3">*</span> | ||
<span class="cov4">*</span> | ||
<span class="cov5">*</span> | ||
<span class="cov6">*</span> | ||
<span class="cov7">*</span> | ||
<span class="cov8">*</span> | ||
<span class="cov9">*</span> | ||
<span class="cov10">high coverage</span> | ||
|
||
</div> | ||
</div> | ||
<div id="content"> | ||
|
||
</div> | ||
</body> | ||
</html> |
1 change: 1 addition & 0 deletions
1
go-test-app-02/revisions/2dcfc86a82f2f9b1dfa2d3c90895dbebe42b2e43-inc.out
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
mode: set |
1 change: 1 addition & 0 deletions
1
go-test-app-02/revisions/2dcfc86a82f2f9b1dfa2d3c90895dbebe42b2e43-inc.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
total: (statements) 0.0% |
90 changes: 90 additions & 0 deletions
90
go-test-app-02/revisions/2dcfc86a82f2f9b1dfa2d3c90895dbebe42b2e43.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
|
||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | ||
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" /> | ||
<meta http-equiv="Pragma" content="no-cache" /> | ||
<meta http-equiv="Expires" content="0" /> | ||
<title>cointoss: Go Coverage Report</title> | ||
<script src="../index.js?051cc5cf91bdb3d0065a198fc178cfe0"></script> | ||
</head> | ||
<body> | ||
<div id="topbar"> | ||
<div id="nav"> | ||
<select id="files"> | ||
|
||
<option value="file0">cointoss/foo.go (100.0%)</option> | ||
|
||
<option value="file1">cointoss/main.go (64.7%)</option> | ||
|
||
</select> | ||
</div> | ||
<div id="legend"> | ||
<span>not tracked</span> | ||
|
||
<span class="cov0">not covered</span> | ||
<span class="cov8">covered</span> | ||
|
||
</div> | ||
</div> | ||
<div id="content"> | ||
|
||
<pre class="file" id="file0" style="display: none">package main | ||
|
||
func foo() string <span class="cov8" title="1">{ | ||
return "foo" | ||
}</span> | ||
</pre> | ||
|
||
<pre class="file" id="file1" style="display: none">package main | ||
|
||
import ( | ||
"fmt" | ||
"math/rand" | ||
) | ||
|
||
const side = "right" | ||
|
||
func main() <span class="cov8" title="1">{ | ||
if tossCoin() == "heads" </span><span class="cov8" title="1">{ | ||
|
||
|
||
fmt.Println("Heads") }</span> else<span class="cov0" title="0"> { fmt.Println(` | ||
Tails`) }</span> | ||
|
||
<span class="cov8" title="1">printColor("red") | ||
|
||
fmt.Println("Maybe:", maybe()) | ||
fmt.Println("Foo:", foo())</span> | ||
} | ||
|
||
func tossCoin() string <span class="cov8" title="1">{ | ||
if rand.Intn(2) == 0 </span><span class="cov8" title="1">{ | ||
return "heads" | ||
}</span> else<span class="cov0" title="0"> { | ||
return "tails" | ||
}</span> | ||
} | ||
|
||
func maybe() bool <span class="cov8" title="1">{ | ||
if side == "right" </span><span class="cov8" title="1">{ | ||
return true | ||
}</span> else<span class="cov0" title="0"> { | ||
return false | ||
}</span> | ||
} | ||
|
||
func printColor(color string) <span class="cov8" title="1">{ | ||
switch color </span>{ | ||
case "red":<span class="cov8" title="1"> fmt.Println("Red")</span> | ||
case "blue":<span class="cov0" title="0"> fmt.Println("Blue")</span> | ||
case "green":<span class="cov0" title="0"> fmt.Println("Green")</span> | ||
default:<span class="cov0" title="0"> fmt.Println("Unknown color")</span> | ||
} | ||
} | ||
</pre> | ||
|
||
</div> | ||
</body> | ||
</html> |
17 changes: 17 additions & 0 deletions
17
go-test-app-02/revisions/2dcfc86a82f2f9b1dfa2d3c90895dbebe42b2e43.out
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
mode: set | ||
cointoss/foo.go:3.19,5.2 1 1 | ||
cointoss/main.go:10.13,11.27 1 1 | ||
cointoss/main.go:11.27,14.37 1 1 | ||
cointoss/main.go:14.42,15.25 1 0 | ||
cointoss/main.go:17.2,20.28 3 1 | ||
cointoss/main.go:23.24,24.23 1 1 | ||
cointoss/main.go:24.23,26.3 1 1 | ||
cointoss/main.go:26.8,28.3 1 0 | ||
cointoss/main.go:31.19,32.21 1 1 | ||
cointoss/main.go:32.21,34.3 1 1 | ||
cointoss/main.go:34.8,36.3 1 0 | ||
cointoss/main.go:39.31,40.15 1 1 | ||
cointoss/main.go:41.13,41.32 1 1 | ||
cointoss/main.go:42.14,42.34 1 0 | ||
cointoss/main.go:43.15,43.36 1 0 | ||
cointoss/main.go:44.10,44.39 1 0 |
6 changes: 6 additions & 0 deletions
6
go-test-app-02/revisions/2dcfc86a82f2f9b1dfa2d3c90895dbebe42b2e43.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
cointoss/foo.go:3: foo 100.0% | ||
cointoss/main.go:10: main 83.3% | ||
cointoss/main.go:23: tossCoin 66.7% | ||
cointoss/main.go:31: maybe 66.7% | ||
cointoss/main.go:39: printColor 40.0% | ||
total: (statements) 66.7% |