Update project #74
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: Check Commit CI | |
on: | |
push: | |
paths-ignore: | |
- '**.md' | |
pull_request: | |
paths-ignore: | |
- '**.md' | |
workflow_dispatch: | |
concurrency: | |
group: environment-${{ github.ref }} | |
cancel-in-progress: false | |
jobs: | |
pr: | |
env: | |
KEYSTORE_FILE: ${{secrets.KEYSTORE_FILE}} | |
KEYSTORE_KEY_ALIAS: ${{secrets.KEYSTORE_KEY_ALIAS}} | |
KEYSTORE_KEY_PASSWORD: ${{secrets.KEYSTORE_KEY_PASSWORD}} | |
KEYSTORE_STORE_PASSWORD: ${{secrets.KEYSTORE_STORE_PASSWORD}} | |
runs-on: macos-latest | |
timeout-minutes: 30 | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v2 | |
- name: Setup JDK 21 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 1.21 | |
- name: Make Gradlew Executable | |
run: chmod +x ./gradlew | |
# - name: Lint | |
# run: ./gradlew lint | |
# - name: Detekt | |
# run: ./gradlew detekt | |
# - name: Unit Tests | |
# run: ./gradlew testDebugUnitTest | |
- name: Build | |
run: ./gradlew compileDebugKotlin |