Skip to content

Commit fcee27f

Browse files
committed
Fix paths in Github actions descriptor and clean up gradle.properties
1 parent 872b920 commit fcee27f

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

.github/workflows/ci.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,15 @@ jobs:
2323
if: always()
2424
with:
2525
name: Reports
26-
path: build/reports
26+
path: library/build/reports
2727
- name: Store test results
2828
uses: actions/upload-artifact@v1
2929
if: always()
3030
with:
3131
name: Test results
32-
path: build/test-results/test
32+
path: library/build/test-results/test
3333

34-
- uses: codecov/[email protected]
34+
- name: Upload coverage
35+
uses: codecov/[email protected]
3536
with:
3637
token: ${{ secrets.CODECOV_TOKEN }}

gradle.properties

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
org.gradle.jvmargs=-Xmx2048M -XX:MaxPermSize=512m -XX:MaxHeapSize=1024M -Dfile.encoding=UTF-8
2+
org.gradle.parallel=true
3+
org.gradle.caching=true
4+
25
kotlin.code.style=official
6+
37
kapt.use.worker.api=true
48
kapt.incremental.apt=true
59
kapt.include.compile.classpath=false
6-
org.gradle.parallel=true
7-
org.gradle.caching=true

0 commit comments

Comments
 (0)