diff --git a/.github/workflows/go-release.yml b/.github/workflows/go-release.yml index 3d51191..8586b85 100644 --- a/.github/workflows/go-release.yml +++ b/.github/workflows/go-release.yml @@ -94,28 +94,29 @@ jobs: GOOS=windows GOARCH=amd64 go build pwd - go-test: - runs-on: windows-latest - needs: [changelog, build-test] - environment: production - name: Go Test - steps: - - uses: actions/checkout@v4 - - name: Set up Go - uses: actions/setup-go@v5 - with: - go-version: '1.21' - cache: false - - - name: Go Test - run: | - go test -v ./g_test -tag="@test" -baseurl="${{ secrets.BACKEND_URL }}" - pwd +# go-test: +# runs-on: windows-latest +# needs: [changelog, build-test] +# environment: production +# name: Go Test +# steps: +# - uses: actions/checkout@v4 +# - name: Set up Go +# uses: actions/setup-go@v5 +# with: +# go-version: '1.21' +# cache: false +# +# - name: Go Test +# run: | +# go test -v ./g_test -tag="@test" -baseurl="${{ secrets.BACKEND_URL }}" +# pwd build-go-binary: runs-on: ubuntu-latest - needs: go-test + needs: build-test + environment: production name: Go Build Binary env: GOOS: windows