.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>
This commit is contained in:
committed by
James Tucker
parent
fa13f83375
commit
142ce997cb
@@ -806,7 +806,7 @@ jobs:
|
|||||||
echo
|
echo
|
||||||
git diff --name-only --exit-code || (echo "The files above need updating. Please run 'go generate'."; exit 1)
|
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
|
runs-on: ubuntu-24.04
|
||||||
needs: gomod-cache
|
needs: gomod-cache
|
||||||
steps:
|
steps:
|
||||||
@@ -820,7 +820,7 @@ jobs:
|
|||||||
path: gomodcache
|
path: gomodcache
|
||||||
key: ${{ needs.gomod-cache.outputs.cache-key }}
|
key: ${{ needs.gomod-cache.outputs.cache-key }}
|
||||||
enableCrossOsArchive: true
|
enableCrossOsArchive: true
|
||||||
- name: check that 'go mod tidy' is clean
|
- name: check that 'make tidy' is clean
|
||||||
working-directory: src
|
working-directory: src
|
||||||
run: |
|
run: |
|
||||||
make tidy
|
make tidy
|
||||||
@@ -921,7 +921,7 @@ jobs:
|
|||||||
- fuzz
|
- fuzz
|
||||||
- depaware
|
- depaware
|
||||||
- go_generate
|
- go_generate
|
||||||
- go_mod_tidy
|
- make_tidy
|
||||||
- licenses
|
- licenses
|
||||||
- staticcheck
|
- staticcheck
|
||||||
runs-on: ubuntu-24.04
|
runs-on: ubuntu-24.04
|
||||||
@@ -967,7 +967,7 @@ jobs:
|
|||||||
- fuzz
|
- fuzz
|
||||||
- depaware
|
- depaware
|
||||||
- go_generate
|
- go_generate
|
||||||
- go_mod_tidy
|
- make_tidy
|
||||||
- licenses
|
- licenses
|
||||||
- staticcheck
|
- staticcheck
|
||||||
steps:
|
steps:
|
||||||
@@ -991,7 +991,7 @@ jobs:
|
|||||||
- tailscale_go
|
- tailscale_go
|
||||||
- depaware
|
- depaware
|
||||||
- go_generate
|
- go_generate
|
||||||
- go_mod_tidy
|
- make_tidy
|
||||||
- licenses
|
- licenses
|
||||||
- staticcheck
|
- staticcheck
|
||||||
steps:
|
steps:
|
||||||
|
|||||||
Reference in New Issue
Block a user