.github/workflows: manual caching of dependencies

manual-local-cache
Guillaume Ballet 5 months ago committed by GitHub
parent 125fb1ff58
commit a16fb321f2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 15
      .github/workflows/go.yml

@ -16,6 +16,21 @@ jobs:
uses: actions/setup-go@v5
with:
go-version: 1.21.4
- name: Cache Go modules
id: cache-go-mod
uses: actions/cache@v3
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Install dependencies
run: go mod download
- name: Run tests
run: go test -short ./...
env:

Loading…
Cancel
Save