feat: add deposit and delete operation to GVG in signer and fix a few issue #1771
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: Protobuf Lint | |
on: | |
push: | |
branches: | |
- master | |
- develop | |
- fix-release* | |
paths: | |
- 'proto/**' | |
pull_request: | |
branches: | |
paths: | |
- 'proto/**' | |
jobs: | |
proto-lint: | |
strategy: | |
matrix: | |
os: [ ubuntu-latest ] | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 5 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: bufbuild/[email protected] | |
with: | |
version: 1.14.0 | |
buf_user: "${{ secrets.BUF_REGISTRY_USER }}" | |
buf_api_token: "${{ secrets.BUF_REGISTRY_SECRET }}" | |
- run: buf format --diff --exit-code | |
- uses: bufbuild/buf-lint-action@v1 | |
with: | |
input: 'proto' |