summaryrefslogtreecommitdiffhomepage
path: root/.github
diff options
context:
space:
mode:
authorJames Tucker <james@tailscale.com>2026-02-28 16:11:28 -0800
committerJames Tucker <jftucker@gmail.com>2026-02-28 16:33:39 -0800
commit142ce997cbf53f0bb0c86e96682bce75b34c10f8 (patch)
treef842cd50c0ad5fa7877ab1993c80b04e5fb9ce0e /.github
parentfa13f83375680d223d411604b7360b0325936b19 (diff)
downloadtailscale-142ce997cbf53f0bb0c86e96682bce75b34c10f8.tar.xz
tailscale-142ce997cbf53f0bb0c86e96682bce75b34c10f8.zip
.github/workflows: rename tidy workflow to match what it is
I was confused when everything I was reading in the CI failure was saying `go mod tidy`, but the thing that was actually failing was related to nix flakes. Rename the pipeline and step name to the `make tidy` that it actually runs. Updates #16637 Signed-off-by: James Tucker <james@tailscale.com>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/test.yml10
1 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 862420f70..e6c693188 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -806,7 +806,7 @@ jobs:
echo
git diff --name-only --exit-code || (echo "The files above need updating. Please run 'go generate'."; exit 1)
- go_mod_tidy:
+ make_tidy:
runs-on: ubuntu-24.04
needs: gomod-cache
steps:
@@ -820,7 +820,7 @@ jobs:
path: gomodcache
key: ${{ needs.gomod-cache.outputs.cache-key }}
enableCrossOsArchive: true
- - name: check that 'go mod tidy' is clean
+ - name: check that 'make tidy' is clean
working-directory: src
run: |
make tidy
@@ -921,7 +921,7 @@ jobs:
- fuzz
- depaware
- go_generate
- - go_mod_tidy
+ - make_tidy
- licenses
- staticcheck
runs-on: ubuntu-24.04
@@ -967,7 +967,7 @@ jobs:
- fuzz
- depaware
- go_generate
- - go_mod_tidy
+ - make_tidy
- licenses
- staticcheck
steps:
@@ -991,7 +991,7 @@ jobs:
- tailscale_go
- depaware
- go_generate
- - go_mod_tidy
+ - make_tidy
- licenses
- staticcheck
steps: