Bump google.golang.org/protobuf from 1.27.1 to 1.33.0 #64
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: Run go tests | |
on: | |
push: | |
pull_request: | |
concurrency: | |
group: golang-test-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
name: Run tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup Go 1.18 | |
uses: actions/setup-go@v1 | |
with: | |
go-version: 1.18 | |
id: go | |
- name: Checkout code | |
uses: actions/checkout@v1 | |
- name: Get dependencies | |
run: go mod download | |
- name: Run tests | |
run: go test -p 1 -v -race ./... |