From cfef5d96b38167c5cb0b0cd47367fe94f820a9b8 Mon Sep 17 00:00:00 2001 From: GigabiteStudios Date: Sat, 20 Jun 2026 21:04:18 +0000 Subject: [PATCH] local actions in workflow --- .gitea/workflows/verify.yml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/verify.yml b/.gitea/workflows/verify.yml index d45c9aa..79cc00a 100644 --- a/.gitea/workflows/verify.yml +++ b/.gitea/workflows/verify.yml @@ -6,17 +6,22 @@ on: jobs: verify: runs-on: ubuntu-latest + + env: + RUNNER_TOOL_CACHE: /toolcache + steps: - name: Checkout code - uses: actions/checkout@v4 + uses: https://dock-it.dev/actions/checkout@v4 - name: Set up Go - uses: actions/setup-go@v5 + uses: https://dock-it.dev/actions/setup-go@v5 with: - go-version-file: 'go.mod' + go-version-file: go.mod + cache: true - name: Verify Build run: go build -v ./... - name: Run Tests - run: go test -v ./... + run: go test -v ./... \ No newline at end of file