Attempt to fix failing workflow
Go Tests / test (push) Failing after 1m58s

This commit is contained in:
2026-05-03 20:21:57 +02:00
parent 95fcd2a6c9
commit 852b5e5888
+9 -1
View File
@@ -18,8 +18,16 @@ jobs:
with:
go-version: "1.22"
- name: Cache Go modules
uses: actions/cache@v4
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
- name: Download dependencies
run: go mod download
- name: Run tests
run: go test -v
run: go test ./... -v