Add go install to ci/cd
Go Tests / test (push) Failing after 2s

This commit is contained in:
2026-06-02 22:21:54 +02:00
parent f3c5fb5fe6
commit 82dd07ab59
+8
View File
@@ -28,6 +28,14 @@ jobs:
run: | run: |
go mod download go mod download
- name: Install Go
run: |
rm -rf /usr/local/go
curl -LO https://go.dev/dl/go1.26.2.linux-amd64.tar.gz
tar -C /usr/local -xzf go1.26.2.linux-amd64.tar.gz
export PATH=/usr/local/go/bin:$PATH
go version
- name: Run tests - name: Run tests
run: | run: |
go test ./... -v go test ./... -v