Skip to content

Commit 586b091

Browse files
committed
Calculate coverage using new pickfirst also
1 parent 84194db commit 586b091

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/coverage.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ jobs:
1919
- name: Run coverage
2020
run: go test -coverprofile=coverage.out -coverpkg=./... ./...
2121

22+
- name: Run coverage with new pickfirst
23+
run: GRPC_EXPERIMENTAL_ENABLE_NEW_PICK_FIRST=true go test -coverprofile=coverage_new_pickfirst.out -coverpkg=./... ./...
24+
2225
- name: Upload coverage to Codecov
2326
uses: codecov/codecov-action@v4
2427
with:

.github/workflows/testing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686
- name: Setup GRPC environment
8787
if: matrix.grpcenv != ''
8888
run: echo "${{ matrix.grpcenv }}" >> $GITHUB_ENV
89-
89+
9090
- name: Checkout repo
9191
uses: actions/checkout@v4
9292

0 commit comments

Comments
 (0)