Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork447
Update FUNDING.yml#684
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:[ main ] | |
| pull_request: | |
| branches:[ main ] | |
| jobs: | |
| lint: | |
| name:Spotless check | |
| runs-on:ubuntu-latest | |
| steps: | |
| -name:Check out code | |
| uses:actions/checkout@v3.1.0 | |
| -name:Set up JDK | |
| uses:actions/setup-java@v3.5.1 | |
| with: | |
| distribution:adopt | |
| java-version:17 | |
| -name:spotless | |
| run:./gradlew spotlessCheck | |
| build: | |
| runs-on:ubuntu-latest | |
| steps: | |
| -uses:actions/checkout@v3 | |
| -name:set up JDK | |
| uses:actions/setup-java@v3 | |
| with: | |
| distribution:zulu | |
| java-version:17 | |
| -uses:gradle/gradle-build-action@v2.7.1 | |
| -name:Make Gradle executable | |
| run:chmod +x ./gradlew | |
| -name:Build with Gradle | |
| run:| | |
| ./gradlew --scan --stacktrace \ | |
| :app:assembleDebug |