diff --git a/.github/workflows/check-go-mod.yml b/.github/workflows/check-go-mod.yml index 8065fcaaeb..133be94baa 100644 --- a/.github/workflows/check-go-mod.yml +++ b/.github/workflows/check-go-mod.yml @@ -13,11 +13,13 @@ jobs: - name: Checkout uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - - name: Setup golang - uses: ./.github/actions/golang + # - name: Setup golang + # uses: ./.github/actions/golang - name: Test go mod - run: make test-go-mod + run: | + go mod tidy + git diff --exit-code go.mod go.sum - name: Save logs if: always()