From 65d3b0636c6c632ea7192a96e080bd68b74b74cc Mon Sep 17 00:00:00 2001 From: benzjeremy <313434618+benzjeremy@users.noreply.github.com> Date: Thu, 17 Sep 2026 09:43:38 +0200 Subject: [PATCH] fix(ci): remove go mod tidy step, use build/test/vet only --- .github/workflows/ci_arch.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.github/workflows/ci_arch.yml b/.github/workflows/ci_arch.yml index 330951e..ffc64df 100644 --- a/.github/workflows/ci_arch.yml +++ b/.github/workflows/ci_arch.yml @@ -22,14 +22,6 @@ jobs: uses: actions/setup-go@v5 with: go-version: '1.22' - - name: Verify go.mod tidy - run: | - go mod tidy - if [ -f go.sum ]; then - git diff --exit-code go.mod go.sum - else - git diff --exit-code go.mod - fi - name: Build run: go build ./... - name: Test