Create privacy_policy.txt #32
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: CI | |
on: | |
push: | |
branches: [ main, develop ] | |
pull_request: | |
branches: [ main, develop ] | |
jobs: | |
detekt: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
# caching | |
- name: Cache Gradle Caches | |
uses: actions/cache@v1 | |
with: | |
path: ~/.gradle/caches/ | |
key: cache-gradle-cache | |
- name: Cache Gradle Wrapper | |
uses: actions/cache@v1 | |
with: | |
path: ~/.gradle/wrapper/ | |
key: cache-gradle-wrapper | |
- name: Detekt | |
run: ./gradlew detekt | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
# caching | |
- name: Cache Gradle Caches | |
uses: actions/cache@v1 | |
with: | |
path: ~/.gradle/caches/ | |
key: cache-gradle-cache | |
- name: Cache Gradle Wrapper | |
uses: actions/cache@v1 | |
with: | |
path: ~/.gradle/wrapper/ | |
key: cache-gradle-wrapper | |
- name: Test | |
run: ./gradlew test |