Bump google.golang.org/grpc from 1.40.0 to 1.56.3 in /pkg/macaroons #686
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: Go | |
on: | |
push: | |
branches: | |
- v1 | |
pull_request: | |
branches: | |
- v1 | |
jobs: | |
integration: | |
name: Unit Tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Setup Go 1.x | |
uses: actions/setup-go@v3 | |
with: | |
go-version: '>=1.17.2' | |
- name: Check linting | |
uses: golangci/golangci-lint-action@v3 | |
with: | |
version: v1.54 | |
- name: Setup buf | |
uses: bufbuild/[email protected] | |
- name: Lint protos | |
uses: bufbuild/buf-lint-action@v1 | |
with: | |
input: 'api-spec/protobuf' | |
- name: Run Gosec Security Scanner | |
uses: securego/gosec@master | |
with: | |
args: '-severity high -quiet ./...' | |
- name: Run Nigiri | |
uses: vulpemventures/nigiri-github-action@v1 | |
- name: Get dependencies | |
run: go get -v -t -d ./... | |
- name: Run Tests | |
run: | | |
export TEST_ELEMENTS_ENDPOINT='http://admin1:123@localhost:18884' | |
make test | |
- name: compile | |
run: | | |
make build | |
make build-cli | |
make build-migration |