We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b00f8ff commit 4bc976cCopy full SHA for 4bc976c
.github/workflows/test.yaml
@@ -20,7 +20,7 @@ jobs:
20
uses: actions/checkout@v2
21
22
- name: Test
23
- run: go test
+ run: go test ./... -coverprofile cover.out
24
env:
25
CGO_ENABLED: 0
26
GO111MODULE: on
.gitignore
@@ -0,0 +1,24 @@
1
+
2
+# Binaries for programs and plugins
3
+*.exe
4
+*.exe~
5
+*.dll
6
+*.so
7
+*.dylib
8
+bin
9
+testbin/*
10
11
+# Test binary, build with `go test -c`
12
+*.test
13
14
+# Mock (gomock) artifacts
15
+gomock_reflect_*
16
17
+# Output of the go coverage tool, specifically when used with LiteIDE
18
+*.out
19
+# editor and IDE paraphernalia
+.idea
+*.swp
+*.swo
+*~
0 commit comments