From 6dcc6313a6e457ae552164765da2494c3844a072 Mon Sep 17 00:00:00 2001 From: Denton Gentry Date: Sat, 27 Aug 2022 19:35:37 -0700 Subject: [PATCH] CI: add `go mod tidy` workflow Fixes https://github.com/tailscale/tailscale/issues/4567 Signed-off-by: Denton Gentry --- .github/workflows/go_mod_tidy.yml | 35 +++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .github/workflows/go_mod_tidy.yml diff --git a/.github/workflows/go_mod_tidy.yml b/.github/workflows/go_mod_tidy.yml new file mode 100644 index 000000000..ac78b7aa3 --- /dev/null +++ b/.github/workflows/go_mod_tidy.yml @@ -0,0 +1,35 @@ +name: go mod tidy + +on: + push: + branches: + - main + pull_request: + branches: + - "*" + +concurrency: + group: ${{ github.workflow }}-$${{ github.head_ref || github.run_id }} + cancel-in-progress: true + +jobs: + check: + runs-on: ubuntu-latest + + steps: + - name: Check out code + uses: actions/checkout@v3 + with: + fetch-depth: 0 + + - name: Set up Go + uses: actions/setup-go@v3 + with: + go-version-file: go.mod + + - name: check 'go mod tidy' is clean + run: | + go mod tidy + echo + echo + git diff --name-only --exit-code || (echo "Please run 'go mod tidy'."; exit 1)