fix(grpc): merge raw transaction methods to one rpc method #3801
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 and format check | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
linting: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.23.1' | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Installing golangci-lint | |
run: go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.61 | |
- name: Formatting and linting the project | |
run: make check |