Skip to content

Commit 5cdc279

Browse files
committed
More codecov.
1 parent ea498ec commit 5cdc279

2 files changed

Lines changed: 10 additions & 2 deletions

File tree

.github/workflows/build_and_test.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,11 @@ jobs:
2020
- name: Gradle
2121
run: ./gradlew lintKotlin check codeCoverageReport --no-daemon
2222

23-
- name: Codecov
23+
- name: Codecov - Install dependencies
24+
run: |
25+
apk add --no-cache bash git curl
26+
27+
- name: Codecov - Upload
2428
uses: codecov/codecov-action@v5.5.2
2529
with:
2630
token: ${{ secrets.CODECOV_TOKEN }}

.github/workflows/publish.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,11 @@ jobs:
2222
echo "Publish $VERSION"
2323
./gradlew lintKotlin check codeCoverageReport publishAggregationToCentralPortal --no-daemon
2424
25-
- name: Codecov
25+
- name: Codecov - Install dependencies
26+
run: |
27+
apk add --no-cache bash git curl
28+
29+
- name: Codecov - Upload
2630
uses: codecov/codecov-action@v5.5.2
2731
with:
2832
token: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)