fix(deps): update dependency androidx.compose.foundation:foundation to v1.7.7 #2072
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: PR Check | |
on: | |
pull_request: | |
branches: [ master ] | |
paths-ignore: | |
- 'fastlane/**' | |
- '.github/**' | |
- 'icons/**' | |
- 'images/**' | |
- 'scripts/**' | |
- 'whatsnew/**' | |
- '**.md' | |
- '**.MD' | |
jobs: | |
validate-pr: | |
name: 'Spotless, Tests and Build Production Debug Build' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setting up project | |
uses: ./.github/actions/setup | |
- name: 🧪 Run Tests | |
run: ./gradlew test | |
- name: 🧪 Run Lint free Release | |
run: ./gradlew lintFreeRelease | |
- name: 🏗 Build APK | |
run: bash ./gradlew assembleFreeDebug | |
- name: 🚀 Upload APK to Artifacts 📱 | |
uses: actions/upload-artifact@v4 | |
with: | |
name: app | |
path: app/build/outputs/apk/free/debug/*.apk | |
retention-days: 3 |