Bump rig to v0.17.3 #42
Workflow file for this run
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: Lint (go.mod/go.sum) | |
on: | |
pull_request: | |
paths: | |
- 'go.mod' | |
- 'go.sum' | |
jobs: | |
gomod-lint: | |
name: Validate go module file consistency | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: go.mod | |
check-latest: true | |
- name: Check go.mod/go.sum to be consistent | |
run: go mod tidy -v && git diff --exit-code |