Skip to content

Commit a1bce2f

Browse files
committed
Cache flutter deps in pipeline
1 parent b89d1af commit a1bce2f

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

.github/workflows/test.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,14 @@ jobs:
2323
cd scripts
2424
echo "yes" | ./build_app.sh -v "0.0.1" -b "1" -p "linux" -a "stack_wallet" -d -s
2525
26+
- name: Get dependencies
27+
uses: actions/cache@v4
28+
with:
29+
path: ~/.pub-cache
30+
key: pub-cache-${{ hashFiles('pubspec.lock') }}
31+
restore-keys: |
32+
pub-cache-
33+
2634
- name: Get dependencies
2735
run: flutter pub get
2836

0 commit comments

Comments
 (0)