From 86035dfdc814cd70df4ad17c764fb99e4cc71651 Mon Sep 17 00:00:00 2001 From: renfred Date: Fri, 16 Jan 2026 11:37:56 -0800 Subject: [PATCH] move check-go-mod to separate CI step --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b61c16c..73bd849 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,7 +28,10 @@ jobs: go-version-file: ./go.mod - name: Run lints - run: ./scripts/lint && ./scripts/check-go-mod + run: ./scripts/lint + + - name: Check go.mod is tidy + run: ./scripts/check-go-mod test: timeout-minutes: 10 name: test