File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1515 uses : actions/setup-java@v1
1616 with :
1717 java-version : 1.8
18+ - name : Cache Gradle packages
19+ uses : actions/cache@v2
20+ with :
21+ path : |
22+ ~/.gradle/caches
23+ ~/.gradle/wrapper
1824 - name : Setup gradle binaries
1925 run : ./gradlew
2026 - name : Pull dependencies libs, and perform initial compile
2329 run : ./gradlew test
2430 - name : Run the build
2531 run : ./gradlew build
32+ - name : Archive code coverage results
33+ uses : actions/upload-artifact@v2
34+ with :
35+ name : code-coverage-report
36+ path : |
37+ build/reports/**/*
38+ build/test-results/**/*
39+ build/jacoco/**/*
40+ build/libs/**/*
Original file line number Diff line number Diff line change 2828 uses : actions/setup-java@v1
2929 with :
3030 java-version : 1.8
31+ - name : Cache Gradle packages
32+ uses : actions/cache@v2
33+ with :
34+ path : |
35+ ~/.gradle/caches
36+ ~/.gradle/wrapper
3137 - name : Setup gradle binaries
3238 run : ./gradlew
3339 - name : Pull dependencies libs, and perform initial compile
3440 run : ./gradlew src
3541 - name : Run unit tests
3642 run : ./gradlew test -Ptest_mysql
43+ - name : Archive code coverage results
44+ uses : actions/upload-artifact@v2
45+ with :
46+ name : code-coverage-report
47+ path : |
48+ build/reports/**/*
49+ build/test-results/**/*
50+ build/jacoco/**/*
Original file line number Diff line number Diff line change 2828 uses : actions/setup-java@v1
2929 with :
3030 java-version : 1.8
31+ - name : Cache Gradle packages
32+ uses : actions/cache@v2
33+ with :
34+ path : |
35+ ~/.gradle/caches
36+ ~/.gradle/wrapper
3137 - name : Setup gradle binaries
3238 run : ./gradlew
3339 - name : Pull dependencies libs, and perform initial compile
3440 run : ./gradlew src
3541 - name : Run unit tests
3642 run : ./gradlew test -Ptest_mysql
43+ - name : Archive code coverage results
44+ uses : actions/upload-artifact@v2
45+ with :
46+ name : code-coverage-report
47+ path : |
48+ build/reports/**/*
49+ build/test-results/**/*
50+ build/jacoco/**/*
You can’t perform that action at this time.
0 commit comments