From 7c477f5ba3f8e7b26a290b7a055f47924d081d08 Mon Sep 17 00:00:00 2001 From: Catalin Hofnar Date: Tue, 10 May 2022 16:32:59 +0300 Subject: [PATCH] Changed Github workflow to cache dependencies Signed-off-by: Catalin Hofnar --- .github/workflows/ci-cd.yml | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index b93e4271..d82518ac 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -40,11 +40,23 @@ jobs: go-version: 1.17.x - name: Check out source code uses: actions/checkout@v1 - - name: Install dependencies + - name: Cache go dependencies + id: cache-go-dependencies + 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 go dependencies + if: steps.cache-go-dependencies.outputs.cache-hit != 'true' + run: go mod download + - name: Install other dependencies run: | cd $GITHUB_WORKSPACE go install github.com/swaggo/swag/cmd/swag@latest - go mod download sudo apt-get update sudo apt-get install rpm sudo apt-get install snapd