ci: cache Go build artifacts between runs #22

Merged
lerko merged 1 commits from chore/ci-cache into main 2026-05-24 20:01:05 +00:00
Showing only changes of commit d038361320 - Show all commits
+6
View File
@@ -18,6 +18,12 @@ jobs:
with: with:
go-version: "1.24" go-version: "1.24"
- uses: actions/cache@v4
with:
path: ~/.cache/go-build
key: go-build-${{ hashFiles('**/*.go', 'go.sum') }}
restore-keys: go-build-
- name: Install build tools - name: Install build tools
run: apk add --no-cache gcc musl-dev run: apk add --no-cache gcc musl-dev