aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/codecov.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/codecov.yml')
-rw-r--r--.github/workflows/codecov.yml19
1 files changed, 19 insertions, 0 deletions
diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml
new file mode 100644
index 0000000..45a8909
--- /dev/null
+++ b/.github/workflows/codecov.yml
@@ -0,0 +1,19 @@
+name: codecov
+on: [push]
+jobs:
+ codecov:
+ name: codecov
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2
+ - uses: actions/setup-go@v2
+ with:
+ go-version: 1.14
+ - name: vet
+ run: |
+ go vet ./...
+ - name: generate report
+ run: |
+ go test -v -race -coverprofile=coverage.txt -covermode=atomic ./...
+ - name: upload coverage report
+ uses: codecov/codecov-action@v1