Skip to content

Commit

Permalink
[QA-184] unit test coverage report added (#21)
Browse files Browse the repository at this point in the history
* added octocov configuration
* added GitHub workflow
* increased coverage acceptable score to 89%
  • Loading branch information
abhijit-nightfall authored Dec 4, 2023
1 parent 58f58e4 commit 58e4c29
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: octocov
on:
push:
branches:
- master
pull_request:

jobs:
coverage:
runs-on: ubuntu-latest
steps:
- name: Granting private modules access
run: |
git config --global url."https://${{ secrets.engbot_token }}:[email protected]/watchtowerai".insteadOf "https://github.com/watchtowerai"
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version-file: go.mod
- name: Run tests with coverage report output
# can skip packages with external dependencies (e.g. entity with live DB) with a command like
# ```go test $(go list ./... | grep -v entity) -coverprofile=coverage.out```
run: go test $(go list ./... | grep -v /internal/services/entity | grep -v /internal/entities | grep -v /internal/handler | grep -v /internal/services/entity) -coverprofile=coverage.out
env:
GO_ENV: "test"
GOPRIVATE: "github.com/watchtowerai"
- uses: k1LoW/octocov-action@v0
21 changes: 21 additions & 0 deletions .octocov.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
coverage:
acceptable: current >= 89%
codeToTestRatio:
code:
- '**/*.go'
- '!**/*_test.go'
test:
- '**/*_test.go'
diff:
datastores:
- artifact://${GITHUB_REPOSITORY}
push:
if: is_default_branch
comment:
if: is_pull_request
summary:
if: true
report:
if: is_default_branch
datastores:
- artifact://${GITHUB_REPOSITORY}

0 comments on commit 58e4c29

Please sign in to comment.