From 61b3b29bdd2b1948ca1e37d0be16256468c17787 Mon Sep 17 00:00:00 2001 From: mo khan Date: Thu, 3 Sep 2026 15:57:09 -0600 Subject: [PATCH] chore: run go mod tidy in CI --- .github/workflows/test.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9214ca2ae3..5aeae40249 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,6 +11,18 @@ permissions: contents: read jobs: + mod_tidy: + name: go mod tidy + runs-on: blacksmith-4vcpu-ubuntu-2404 + steps: + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 + - uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6.3.0 + with: + go-version-file: go.mod + - run: go mod tidy -diff + - working-directory: tools + run: go mod tidy -diff + test_postgres: name: Test / Postgres runs-on: blacksmith-4vcpu-ubuntu-2404