From 3a7bb3efb6886258642a73ec0797a834098f7665 Mon Sep 17 00:00:00 2001 From: Andrey Pohilko Date: Tue, 9 May 2023 11:03:23 +0300 Subject: [PATCH] Add codecov integration --- .github/workflows/build.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ad7ac36..67d9aad 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -19,6 +19,8 @@ jobs: - name: Unit tests run: | go test -v -race ./... -covermode=atomic # Run all the tests with the race detector enabled + - name: Upload coverage reports to Codecov + uses: codecov/codecov-action@v3 - name: Static analysis run: | go vet ./... # go vet is the official Go static analyzer