fix(ci): remove go mod tidy step, use build/test/vet only

This commit is contained in:
benzjeremy 2026-09-17 09:43:30 +02:00
parent b0bd48cf88
commit e2d5260b4c

View File

@ -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