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