Skip to content

Commit

Permalink
Add konan caching to main workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
OptimumCode committed Jun 23, 2024
1 parent 732c4cd commit e3e780b
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,14 @@ jobs:
- name: Setup Gradle
uses: gradle/gradle-build-action@v3.4.2

- name: Cache konan dependencies
uses: actions/cache@v4
with:
path: ~/.konan
key: ${{ runner.os }}-gradle-${{ hashFiles('*.gradle.kts') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Build
run: ./gradlew assemble

Expand Down

0 comments on commit e3e780b

Please sign in to comment.