Update dependency dev.sergiobelda.pigment:pigment to v0.7.0 (#830) #2662
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 Project | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - develop | |
| pull_request: | |
| branches: | |
| - main | |
| - develop | |
| jobs: | |
| build: | |
| runs-on: macos-latest | |
| steps: | |
| - name: Checkout the code | |
| uses: actions/checkout@v6 | |
| - name: set up JDK 21 | |
| uses: actions/setup-java@v5 | |
| with: | |
| java-version: '21' | |
| distribution: 'oracle' | |
| cache: gradle | |
| - name: Create google-services.json in app:android | |
| run: echo '${{ secrets.GOOGLE_SERVICES_JSON }}' > app/android/google-services.json | |
| - name: Create google-services.json in wearapp:wearos | |
| run: echo '${{ secrets.GOOGLE_SERVICES_JSON }}' > wearapp/wearos/google-services.json | |
| - name: Run spotlessCheck | |
| run: ./gradlew spotlessCheck | |
| - name: Run Unit tests | |
| run: ./gradlew testDebugUnitTest | |
| - name: Build app:android | |
| run: ./gradlew app:android:assembleProdDebug | |
| - name: Build wearapp:wearos | |
| run: ./gradlew wearapp:wearos:assembleDebug |