chore(deps): bump github.com/consensys/gnark-crypto from 0.19.0 to 0.… #4783
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: Lint and Format Check | |
| permissions: | |
| contents: read | |
| on: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| branches: ["main"] | |
| jobs: | |
| linting: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Install Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: "1.25.1" | |
| - name: Checkout code | |
| uses: actions/checkout@v5 | |
| - name: Check linting and formatting | |
| uses: golangci/golangci-lint-action@v8 | |
| with: | |
| version: v2.4.0 | |
| - name: Check proto files | |
| run: | | |
| go install github.com/bufbuild/buf/cmd/[email protected] | |
| make proto-check |