docs: fix tm2 broken link (#3034) #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Ensure go.mods are tidied | |
on: | |
push: | |
branches: | |
- master | |
workflow_dispatch: | |
pull_request: | |
jobs: | |
main: | |
name: Ensure go.mods are tidied | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ inputs.go-version }} | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Check go.mod files are up to date | |
working-directory: ${{ inputs.modulepath }} | |
run: | | |
make tidy VERIFY_GO_SUMS=true |