Skip to content

Bump google.golang.org/grpc from 1.42.0 to 1.56.3 #193

Bump google.golang.org/grpc from 1.42.0 to 1.56.3

Bump google.golang.org/grpc from 1.42.0 to 1.56.3 #193

Workflow file for this run

name: Linting
on: { push: { branches-ignore: [main, production] } }
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
linting:
name: 🤓 Lint the code
runs-on: ubuntu-latest
container: golang:1.20
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Check formatting using gofmt
run: gofmt -s -l -d
- name: Check for suspicious constructs using "go vet"
run: go vet ./...
- name: Lint the code using "golint"
run: GO111MODULE=off go get -u golang.org/x/lint/golint && go list ./... | grep -v /vendor/ | xargs -L1 golint -set_exit_status
- name: Run staticcheck
run: GO111MODULE=off go get -u honnef.co/go/tools/cmd/staticcheck && staticcheck ./...