mirror of
https://github.com/nextcloud/android.git
synced 2024-11-26 15:15:51 +03:00
10 lines
168 B
Bash
10 lines
168 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
./gradlew combinedTestReport
|
||
|
status=$?
|
||
|
|
||
|
curl -o codecov.sh https://codecov.io/bash
|
||
|
bash ./codecov.sh -t fc506ba4-33c3-43e4-a760-aada38c24fd5
|
||
|
|
||
|
exit $status
|