chore(deps): Bump golang.org/x/text from 0.31.0 to 0.32.0 #5684
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: Documentation And Code Formatting | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - dev | |
| pull_request: | |
| permissions: | |
| contents: read | |
| # Optional: allow read access to pull request. Use with `only-new-issues` option. | |
| # pull-requests: read | |
| jobs: | |
| docs-and-fmt: | |
| name: Check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| persist-credentials: false | |
| - uses: actions/setup-go@v4 | |
| with: | |
| go-version-file: ./go.mod | |
| cache: false | |
| - name: Install dependencies | |
| run: make dev-setup | |
| - run: make docs-check | |
| - run: if [ "$(gofmt -l . | wc -l)" -gt 0 ]; then exit 1; fi | |
| name: check gofmt |