Skip to content

Bump androidx.camera:camera-lifecycle from 1.4.0 to 1.4.1 #69

Bump androidx.camera:camera-lifecycle from 1.4.0 to 1.4.1

Bump androidx.camera:camera-lifecycle from 1.4.0 to 1.4.1 #69

Workflow file for this run

name: Android CI/CD
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
- name: Load Google Service file
env:
DATA: ${{ secrets.GOOGLE_SERVICES_JSON }}
run: echo $DATA | base64 -di > app/google-services.json
- name: Cache Gradle dependencies
uses: actions/cache@v3
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: |
gradle-
- name: Make gradlew executable
run: chmod +x ./gradlew
- name: Build the app
run: ./gradlew assembleDebug
- name: Run unit tests
run: ./gradlew testDebugUnitTest
- name: Run lint checks
run: ./gradlew lint