fix: avoid errors when --max-package-size
differs between create runs
#1386
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: Check for go mod changes | |
on: | |
pull_request: | |
merge_group: | |
permissions: | |
contents: read | |
jobs: | |
validate-go-mod: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Setup golang | |
uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0 | |
with: | |
go-version-file: go.mod | |
- name: Test go mod | |
run: | | |
go mod tidy | |
git diff --exit-code go.mod go.sum | |
- name: Test go mod hack/schema | |
working-directory: ./hack/schema | |
run: | | |
go mod tidy | |
git diff --exit-code go.mod go.sum |