Skip to content

style: code formatting and checks in the CI #1120

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 13 commits into from
Oct 13, 2021
Merged
Prev Previous commit
Next Next commit
Update ci.yaml
  • Loading branch information
azlekov committed Oct 12, 2021
commit f35a99f6e7b2da910afbc01e37a4b696d10321db
12 changes: 7 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,15 @@ jobs:
key: ${{ runner.os }}-gradle-wrapper-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }}

- name: Run tests
- run: mkdir "$ANDROID_HOME/licenses" || true
- run: echo "24333f8a63b6825ea9c5514f83c2829b004d1fee" >> "$ANDROID_HOME/licenses/android-sdk-license"
- run: ./gradlew clean jacocoTestReport --no-daemon
run: |
mkdir "$ANDROID_HOME/licenses" || true
echo "24333f8a63b6825ea9c5514f83c2829b004d1fee" >> "$ANDROID_HOME/licenses/android-sdk-license"
./gradlew clean jacocoTestReport --no-daemon

- name: Report test coverage
- run: pip install --user codecov
- run: codecov
run: |
pip install --user codecov
codecov
list-check:
name: Lint
timeout-minutes: 5
Expand Down