From feee4a07b4a16ca86a45bf5ca81e16a96770ddc5 Mon Sep 17 00:00:00 2001 From: Amir Raminfar Date: Mon, 11 Nov 2024 13:39:22 -0800 Subject: [PATCH] chore: attempts to install go for static checker (#3381) --- .github/workflows/test.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 350d842c37eb..aa3a9841e2d1 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -74,12 +74,17 @@ jobs: steps: - name: Checkout code uses: actions/checkout@v4 + - name: Setup Go + uses: actions/setup-go@v5 + with: + go-version: "1.23" + check-latest: true - name: Generate dependencies run: make fake_assets shared_key.pem shared_cert.pem - name: Stactic checker uses: dominikh/staticcheck-action@v1.3.1 with: - version: "latest" + install-go: false int-test: name: Integration Tests timeout-minutes: 60