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.
2 parents c054b26 + 11b008e commit 2fb7740Copy full SHA for 2fb7740
.github/workflows/codecov.yml
@@ -4,7 +4,6 @@ on:
4
push:
5
branches: [main]
6
paths:
7
- - cmd/**/*
8
- pkg/**/*
9
- lib/**/*
10
- go.mod
@@ -14,7 +13,6 @@ on:
14
13
pull_request:
15
16
17
18
19
20
@@ -38,7 +36,7 @@ jobs:
38
36
with:
39
37
go-version: '1.23'
40
- name: Run coverage
41
- run: go test -coverprofile=coverage.txt -covermode=atomic ./...
+ run: go test -coverprofile=coverage.txt -covermode=atomic $(go list ./... | grep -v /cmd/)
42
- name: Upload results to Codecov
43
uses: codecov/codecov-action@v5
44
codecov.yml
@@ -1,2 +1,2 @@
1
ignore:
2
+ - cmd/**/*
0 commit comments