feat: add Pie and Combined(bar + line) chart in HealthFragment #48
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Android Build | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
types: [opened, synchronize, edited] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Set Up JDK | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 11 | |
- name: Change wrapper permissions | |
run: chmod +x ./gradlew | |
- name: Run Tests | |
run: ./gradlew test | |
- name: Build Project | |
run: ./gradlew assemble --debug |