fix(deps): update module google.golang.org/grpc to v1.68.0 #1758
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: [main] | |
pull_request: | |
branches: [main, develop] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: null | |
jobs: | |
build: | |
name: Build on ${{ matrix.os }} with Go ${{ matrix.go }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [macos-latest, windows-latest, ubuntu-latest] | |
go: ['1.21'] | |
steps: | |
- name: Set up Go ${{ matrix.go }} | |
uses: actions/setup-go@v2 | |
with: | |
go-version: ${{ matrix.go }} | |
id: go | |
- name: Check out code | |
uses: actions/checkout@v2 | |
- name: Get dependencies | |
run: make deps | |
- name: Build | |
run: make build | |
- name: Tests | |
run: make test | |
- name: Lint | |
run: | | |
go install golang.org/x/lint/golint@latest | |
make lint | |
- name: Vet | |
run: make vet |