1 parent 5392126 commit c93f337Copy full SHA for c93f337
2 files changed
.github/workflows/ci.yml
@@ -40,7 +40,7 @@ jobs:
40
run: go mod download
41
42
- name: Run tests
43
- run: go test -v -race -coverprofile=coverage.txt -covermode=atomic ./...
+ run: go test -v -race -coverprofile=coverage.txt -covermode=atomic ./cmd/... ./pkg/...
44
45
- name: Upload coverage to Codecov
46
uses: codecov/codecov-action@v4
.github/workflows/test.yml
@@ -23,10 +23,10 @@ jobs:
23
24
25
26
- run: go test -v ./...
+ run: go test -v ./cmd/... ./pkg/...
27
28
- name: Run tests with race detection
29
- run: go test -race -v ./...
+ run: go test -race -v ./cmd/... ./pkg/...
30
31
- name: Check code formatting
32
run: |
0 commit comments