From 2ac41c174ce4f3bc136f6d65c8ca12ab17c359d8 Mon Sep 17 00:00:00 2001 From: Alex Dadukin Date: Mon, 16 Mar 2026 18:51:40 +0000 Subject: [PATCH 1/2] Add unit tests step to the CI workflow --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 17da847..915eaf0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,3 +29,5 @@ jobs: cache-encryption-key: ${{ secrets.GRADLE_ENCRYPTION_KEY }} - name: Assemble run: ./gradlew assembleRelease --configuration-cache + - name: Run tests + run: ./gradlew test From 73fabb2a4eaf8986d522aea59354b4aa78586c1a Mon Sep 17 00:00:00 2001 From: Mattias Buelens Date: Tue, 17 Mar 2026 13:55:30 +0100 Subject: [PATCH 2/2] Use configuration cache --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 915eaf0..63f5034 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,4 +30,4 @@ jobs: - name: Assemble run: ./gradlew assembleRelease --configuration-cache - name: Run tests - run: ./gradlew test + run: ./gradlew test --configuration-cache