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.
1 parent 84194db commit 586b091Copy full SHA for 586b091
.github/workflows/coverage.yml
@@ -19,6 +19,9 @@ jobs:
19
- name: Run coverage
20
run: go test -coverprofile=coverage.out -coverpkg=./... ./...
21
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
+
25
- name: Upload coverage to Codecov
26
uses: codecov/codecov-action@v4
27
with:
.github/workflows/testing.yml
@@ -86,7 +86,7 @@ jobs:
86
- name: Setup GRPC environment
87
if: matrix.grpcenv != ''
88
run: echo "${{ matrix.grpcenv }}" >> $GITHUB_ENV
89
-
90
- name: Checkout repo
91
uses: actions/checkout@v4
92
0 commit comments