all repos — gomponents @ e8faab5207e6ed48aef0a6b1ade710dd8fbfadd3

HTML components in pure Go

Try out codecov.io (#5)

Markus Wüstenberg markus@maragu.dk
Fri, 18 Sep 2020 14:05:53 +0200
commit

e8faab5207e6ed48aef0a6b1ade710dd8fbfadd3

parent

15d2cc9373d10e2d2f3bedde0a0a6d32c243ddfa

2 files changed, 5 insertions(+), 1 deletions(-)

jump to
M .github/workflows/go.yml.github/workflows/go.yml
@@ -27,7 +27,10 @@ - name: Build       run: go build -v .
 
     - name: Test
-      run: go test -v ./...
+      run: go test -v -coverprofile=coverage.txt ./...
+
+    - name: Coverage
+      uses: codecov/codecov-action@v1.0.13
 
   lint:
     name: Lint
M README.mdREADME.md
@@ -1,6 +1,7 @@ # gomponents
 
 [![GoDoc](https://godoc.org/github.com/maragudk/gomponents?status.svg)](https://godoc.org/github.com/maragudk/gomponents)
+[![codecov](https://codecov.io/gh/maragudk/gomponents/branch/master/graph/badge.svg)](https://codecov.io/gh/maragudk/gomponents)
 
 gomponents are components of DOM nodes for Go, that can render to an HTML Document.
 gomponents aims to make it easy to build HTML pages of reusable components,