From a1bce2f00ef1f597c7b798e06323877160c26fcf Mon Sep 17 00:00:00 2001 From: Dan Miller Date: Mon, 4 May 2026 19:50:11 -0700 Subject: [PATCH] Cache flutter deps in pipeline --- .github/workflows/test.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 585e2d9a7..5384f4bbd 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -23,6 +23,14 @@ jobs: cd scripts echo "yes" | ./build_app.sh -v "0.0.1" -b "1" -p "linux" -a "stack_wallet" -d -s + - name: Get dependencies + uses: actions/cache@v4 + with: + path: ~/.pub-cache + key: pub-cache-${{ hashFiles('pubspec.lock') }} + restore-keys: | + pub-cache- + - name: Get dependencies run: flutter pub get