Добавлено кэширование библиотек
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:
go-version-file: 'go.mod'
- name: Show Go environment
run: |
echo "🔧 Go environment:"
go version
go env GOPROXY
go env GOMODCACHE
- name: Cache Go modules
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: Download dependencies
run: |