refactor: playlist position tracking using player properties (#1054) #498
This file contains hidden or 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: Build App | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2.3.4 | |
| - name: Setup Java | |
| uses: actions/setup-java@v2 | |
| with: | |
| distribution: 'adopt' | |
| java-version: '17' | |
| - name: Validate Gradle Wrapper | |
| uses: gradle/wrapper-validation-action@v1.0.4 | |
| - name: Build | |
| run: bash gradlew assembleRelease lintRelease testDebugUnitTest |