Добавлено кэширование библиотек
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 35s

This commit is contained in:
Ганеев Артем
2025-11-22 18:34:29 +03:00
parent 92cf2ac897
commit 432db108d4

View File

@@ -21,12 +21,15 @@ jobs:
with: with:
go-version-file: 'go.mod' go-version-file: 'go.mod'
- name: Show Go environment - name: Cache Go modules
run: | uses: actions/cache@v3
echo "🔧 Go environment:" with:
go version path: |
go env GOPROXY ~/.cache/go-build
go env GOMODCACHE ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Download dependencies - name: Download dependencies
run: | run: |