We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb7cc0e commit 8cd99d8Copy full SHA for 8cd99d8
.github/workflows/ci.yml
@@ -61,6 +61,9 @@ jobs:
61
run: codecov
62
env:
63
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
64
+
65
+ - name: Run octocov
66
+ uses: k1LoW/octocov-action@v0
67
windows-test:
68
name: Test
69
strategy:
.octocov.yml
@@ -0,0 +1,20 @@
1
+# generated by octocov init
2
+coverage:
3
+ if: true
4
+codeToTestRatio:
5
+ code:
6
+ - '**/*.go'
7
+ - '!**/*_test.go'
8
+ test:
9
+ - '**/*_test.go'
10
+testExecutionTime:
11
12
+diff:
13
+ datastores:
14
+ - artifact://${GITHUB_REPOSITORY}
15
+comment:
16
+ if: is_pull_request
17
+report:
18
+ if: is_default_branch
19
20
0 commit comments