fix: 添加setup-go步骤
Some checks failed
Build / build (push) Failing after 7m17s

This commit is contained in:
lafay
2026-03-19 11:31:14 +08:00
parent a168e6f2e4
commit 766eb9cda4

View File

@@ -17,7 +17,14 @@ jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
cache: false
- name: Download dependencies - name: Download dependencies
run: go mod download run: go mod download