Skip to content

Merge pull request #54 from Divinelink/feature/replace-jellyseerr-bot… #325

Merge pull request #54 from Divinelink/feature/replace-jellyseerr-bot…

Merge pull request #54 from Divinelink/feature/replace-jellyseerr-bot… #325

Workflow file for this run

name: Android CI
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 17
uses: actions/setup-java@v2
with:
java-version: 17
distribution: 'adopt'
- name: Cache Gradle wrapper
uses: actions/cache@v3
with:
path: |
~/.gradle/wrapper
key: gradle-wrapper-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }}
restore-keys: |
gradle-wrapper-
- name: Cache Gradle dependencies
uses: actions/cache@v3
with:
path: |
~/.gradle/caches
~/.gradle/caches/modules-2/files-2.1
key: gradle-caches-${{ runner.os }}-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: |
gradle-caches-${{ runner.os }}-
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Detekt Format
run: ./gradlew detektFormat