Bump fast-uri from 3.1.0 to 3.1.2 in /docs/benchmark-app #97
This file contains hidden or 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: Go Generate | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| jobs: | |
| generate: | |
| name: generate | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-go@v6 | |
| with: | |
| go-version: '1.25' | |
| - name: Run go generate | |
| run: go generate ./... | |
| - name: Check for uncommitted changes | |
| run: | | |
| git diff --exit-code || (echo "Error: go generate produced changes. Please commit them." && exit 1) |