Skip to content

Bump google.golang.org/grpc from 1.64.0 to 1.64.1 #54

Bump google.golang.org/grpc from 1.64.0 to 1.64.1

Bump google.golang.org/grpc from 1.64.0 to 1.64.1 #54

Workflow file for this run

name: tests
on:
push: {branches: [master]}
pull_request: {branches: [master]}
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 20
strategy:
fail-fast: false
matrix:
imgtag:
- "golang:1.22-bullseye"
goarch:
- "amd64"
container: "${{matrix.imgtag}}"
env:
GOPATH: "${{github.workspace}}/go"
GOARCH: "${{matrix.goarch}}"
SRCDIR: "go/src/github.com/bitly/little_bigtable"
steps:
- uses: actions/checkout@v2
with:
path: ${{env.SRCDIR}}
- name: build
run: |
cd $SRCDIR
make all
- name: test
run: |
cd $SRCDIR
./test.sh