Skip to content

[Update]: Bump androidx.lifecycle:lifecycle-runtime-ktx from 2.7.0 to 2.8.0 #421

[Update]: Bump androidx.lifecycle:lifecycle-runtime-ktx from 2.7.0 to 2.8.0

[Update]: Bump androidx.lifecycle:lifecycle-runtime-ktx from 2.7.0 to 2.8.0 #421

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up JDK 17
uses: actions/setup-java@v2
with:
java-version: '17'
distribution: 'adopt'
- name: Cache Gradle and wrapper
uses: actions/cache@v2
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Grant Permission to Execute
run: chmod +x gradlew
- name: 🏗 Build with Gradle 🛠️
run: ./gradlew build --stacktrace