From dc3a74cfb6d4b9f82a0f79f578b30a8ace54daf3 Mon Sep 17 00:00:00 2001 From: "Stanislav N. aka pztrn" Date: Thu, 11 Sep 2025 08:27:07 +0500 Subject: [PATCH] Still debugging. --- .gitea/workflows/on-push.yml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/on-push.yml b/.gitea/workflows/on-push.yml index 50d97fa..e700c4f 100644 --- a/.gitea/workflows/on-push.yml +++ b/.gitea/workflows/on-push.yml @@ -10,17 +10,20 @@ jobs: steps: - name: "checkout source" uses: actions/checkout@v4 - - name: "cache go dependencies" - uses: actions/cache@v4 + - name: "restore cache with go things" + uses: actions/cache/restore@v4 with: - path: | - /home/container/go - /home/container/golangci-lint + path: /home/container key: bunker-go-cache - name: "lint" uses: docker://code.pztrn.name/containers/go-toolbox:v8 with: command: "/usr/local/bin/task lint" + - name: "save cache with go things" + uses: actions/cache/save@v4 + with: + path: /home/container + key: bunker-go-cache # Tests: # runs-on: "ubuntu-22.04"