We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea498ec commit 5cdc279Copy full SHA for 5cdc279
2 files changed
.github/workflows/build_and_test.yaml
@@ -20,7 +20,11 @@ jobs:
20
- name: Gradle
21
run: ./gradlew lintKotlin check codeCoverageReport --no-daemon
22
23
- - name: Codecov
+ - name: Codecov - Install dependencies
24
+ run: |
25
+ apk add --no-cache bash git curl
26
+
27
+ - name: Codecov - Upload
28
uses: codecov/codecov-action@v5.5.2
29
with:
30
token: ${{ secrets.CODECOV_TOKEN }}
.github/workflows/publish.yaml
@@ -22,7 +22,11 @@ jobs:
echo "Publish $VERSION"
./gradlew lintKotlin check codeCoverageReport publishAggregationToCentralPortal --no-daemon
31
32
0 commit comments