Skip to content

Commit

Permalink
Update project
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelbel committed Oct 30, 2024
1 parent 68235af commit e118e78
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,23 @@ jobs:
with:
distribution: 'temurin'
java-version: '21'

- name: cash gradle dependencies
uses: actions/cache@v3
with:
path: ~/.gradle/caches
key: gradle-${{ runner.os }}-${{ hashFiles('/*.gradle*', '/gradle-wrapper.properties') }}
restore-keys: |
gradle-${{ runner.os }}-
- name: cache gradle wrapper
uses: actions/cache@v3
with:
path: ~/.gradle/wrapper
key: gradle-wrapper-${{ runner.os }}-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }}

- name: make gradlew executable
run: chmod +x ./gradlew

# - name: compile debug kotlin
# run: ./gradlew compileDebugKotlin

- name: build debug artifact
run: ./gradlew app:assembleDebug
Expand Down

0 comments on commit e118e78

Please sign in to comment.