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 5d6c710 commit 3ef4752Copy full SHA for 3ef4752
.github/workflows/gradle.yml
@@ -31,5 +31,10 @@ jobs:
31
uses: actions/setup-java@v1
32
with:
33
java-version: 8
34
- - name: Publish coverage
35
- run: ./gradlew jacocoTestReport coveralls
+ - name: Build with Gradle
+ run: ./gradlew jacocoTestReport
36
+ - name: Upload coverage to Codecov
37
+ uses: codecov/codecov-action@v1
38
+ with:
39
+ files: ./build/reports/jacoco/test/jacocoTestReport.xml
40
+ name: codecov
build.gradle
@@ -9,7 +9,6 @@ plugins {
9
id 'maven-publish'
10
id 'signing'
11
id 'jacoco'
12
- id 'com.github.kt3k.coveralls' version '2.12.0'
13
id 'de.undercouch.download' version '4.1.1'
14
id 'me.champeau.gradle.jmh' version '0.5.3'
15
}
0 commit comments