Bump com.google.accompanist:accompanist-permissions from 0.37.0 to 0.37.3 #152
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: Android CI | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: set up JDK 11 | |
| uses: actions/setup-java@v2 | |
| with: | |
| java-version: '11' | |
| distribution: 'temurin' | |
| cache: gradle | |
| - name: Grant execute permission for gradlew | |
| run: chmod +x gradlew | |
| - name: Access GMP_KEY | |
| env: | |
| GMP_KEY: $ | |
| run: echo GMP_KEY=\"GMP_KEY\" > ./local.properties | |
| - name: Build Project | |
| run: ./gradlew assemble | |
| - name: Run Tests | |
| run: ./gradlew test | |
| - name: Ktlint Format | |
| run: ./gradlew ktlintFormat | |
| - name: Ktlint Check | |
| run: ./gradlew ktlintCheck |