Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions .github/workflows/build-test-lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,13 @@ jobs:
with:
task: assembleDebug assembleAndroidTest assembleRelease
gradle-cache-encryption-key: ${{ secrets.GradleEncryptionKey }}
- name: Save build outputs
uses: actions/cache/save@v4
with:
path: |
project/*/build
project/.gradle
key: build-outputs-${{ github.sha }}
test:
name: Test
runs-on: ubuntu-latest
Expand All @@ -55,6 +62,13 @@ jobs:
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
with:
ref: ${{ inputs.ref }}
- name: Restore build outputs
uses: actions/cache/restore@v4
with:
path: |
project/*/build
project/.gradle
key: build-outputs-${{ github.sha }}
- name: Test
uses: ./.github/actions/gradle-task
with:
Expand All @@ -79,6 +93,13 @@ jobs:
steps:
- name: "Checkout"
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
- name: Restore build outputs
uses: actions/cache/restore@v4
with:
path: |
project/*/build
project/.gradle
key: build-outputs-${{ github.sha }}
- name: Build
uses: ./.github/actions/gradle-task
with:
Expand Down
2 changes: 1 addition & 1 deletion project/gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ hilt-work = "1.2.0"
jackson = "2.13.5"
jaxb = "4.0.5"
jaxb-api = "2.3.1"
kmqtt = "0.4.6"
kmqtt = "1.0.0"
kotlin = "1.9.25"
kotlin-coroutines = "1.9.0"
kotlin-datetime = "0.6.2"
Expand Down