Skip to content

Merge pull request #7661 from yuxiang-zhang/7644 #818

Merge pull request #7661 from yuxiang-zhang/7644

Merge pull request #7661 from yuxiang-zhang/7644 #818

name: Cache Dependencies
on:
push:
branches:
- main
jobs:
cache-dependencies:
name: Cache dependencies
runs-on: ubuntu-latest
steps:
- name: Cache Go modules
uses: actions/cache@ab5e6d0c87105b4c9c2047343972218f562e4319 #v4.0.1
with:
path: |
~/.cache/go-build/
~/go/pkg/mod/
key: go-${{ hashFiles('go.sum') }}
restore-keys: |
go-