Skip to content

Commit c93f337

Browse files
committed
Fix CI
Signed-off-by: Alvaro Saurin <saurin@adobe.com>
1 parent 5392126 commit c93f337

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
run: go mod download
4141

4242
- name: Run tests
43-
run: go test -v -race -coverprofile=coverage.txt -covermode=atomic ./...
43+
run: go test -v -race -coverprofile=coverage.txt -covermode=atomic ./cmd/... ./pkg/...
4444

4545
- name: Upload coverage to Codecov
4646
uses: codecov/codecov-action@v4

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ jobs:
2323
run: go mod download
2424

2525
- name: Run tests
26-
run: go test -v ./...
26+
run: go test -v ./cmd/... ./pkg/...
2727

2828
- name: Run tests with race detection
29-
run: go test -race -v ./...
29+
run: go test -race -v ./cmd/... ./pkg/...
3030

3131
- name: Check code formatting
3232
run: |

0 commit comments

Comments
 (0)