Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: fix coverage uploads to Codecov #306

Merged
merged 1 commit into from
Nov 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 15 additions & 4 deletions .github/workflows/pr-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,13 +54,24 @@ jobs:
path: ~/go/pkg/mod
key: ${{ runner.os }}-${{ env.cache-name }}-${{ hashFiles('**/go.sum') }}
- name: Run unit tests
run: go test -race -coverprofile=coverage.out -covermode=atomic ./...
run: go test -race -short -coverpkg=./... -coverprofile=coverage-unit.out -covermode=atomic ./...
- name: Run e2e tests
run: go test -race --coverprofile=coverage.out -covermode=atomic ./e2e/...
- name: Upload coverage to Codecov
run: go test -race -coverpkg=./... -coverprofile=coverage-e2e.out -covermode=atomic ./e2e/...
- name: Upload coverage to Codecov (unit)
uses: codecov/codecov-action@v4.6.0
with:
name: Code Coverage for GO SDK
name: Code Coverage for GO SDK (unit)
files: ./coverage-unit.out
flags: unit
fail_ci_if_error: true
verbose: true
token: ${{ secrets.CODECOV_UPLOAD_TOKEN }}
- name: Upload coverage to Codecov (e2e)
uses: codecov/codecov-action@v4.6.0
with:
name: Code Coverage for GO SDK (e2e)
files: ./coverage-e2e.out
flags: e2e
fail_ci_if_error: true
verbose: true
token: ${{ secrets.CODECOV_UPLOAD_TOKEN }}
Loading