From 5ca07e574a2dbc96704f53fd95d0f022ec786111 Mon Sep 17 00:00:00 2001 From: mcrcortex <18544518+MCRcortex@users.noreply.github.com> Date: Thu, 2 Oct 2025 20:38:37 +1000 Subject: [PATCH] cache on commit --- .github/workflows/check-does-build.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/check-does-build.yml b/.github/workflows/check-does-build.yml index ae995529..a0676fc8 100644 --- a/.github/workflows/check-does-build.yml +++ b/.github/workflows/check-does-build.yml @@ -15,6 +15,13 @@ jobs: distribution: temurin java-version: 21 + - name: Loom Cache + uses: actions/cache@v4 + with: + path: "**/.gradle/loom-cache" + key: "${{ runner.os }}-gradle-${{ hashFiles('**/libs.versions.*', '**/*.gradle*', '**/gradle-wrapper.properties') }}" + restore-keys: "${{ runner.os }}-gradle-" + - name: Setup Gradle uses: gradle/actions/setup-gradle@v4 with: