File tree Expand file tree Collapse file tree 3 files changed +15
-14
lines changed Expand file tree Collapse file tree 3 files changed +15
-14
lines changed Original file line number Diff line number Diff line change 8686 # We validate all commits as we only fetched the number of commits in the PR above,
8787 # by default git-validation has some special github action handling but that seems broken.
8888 run : make .install.gitvalidation && git-validation -no-github
89+
90+ go-tidy :
91+ runs-on : ubuntu-24.04
92+ steps :
93+ - uses : actions/checkout@v5
94+ - uses : actions/setup-go@v5
95+ with :
96+ go-version : 1.25.x
97+ # See comment on lint task
98+ cache-dependency-path : " **/go.sum"
99+ - name : tidy
100+ run : make tidy
101+ - name : check if tree is clean
102+ run : hack/tree_status.sh
Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
22set -e
33
4- SUGGESTION=" ${SUGGESTION:- run \" make vendor \" and commit all changes.} "
4+ SUGGESTION=" ${SUGGESTION:- run \" make tidy \" and commit all changes.} "
55
66STATUS=$( git status --porcelain)
77if [[ -z $STATUS ]]
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments