Skip to content
This repository has been archived by the owner on Dec 11, 2023. It is now read-only.

Bump cloud.google.com/go/pubsub from 1.30.0 to 1.32.0 #403

Bump cloud.google.com/go/pubsub from 1.30.0 to 1.32.0

Bump cloud.google.com/go/pubsub from 1.30.0 to 1.32.0 #403

Workflow file for this run

name: Unit test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.19
- name: Go caches
uses: actions/cache@v3
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ github.job }}-${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ github.job }}-${{ runner.os }}-go-
- name: Test
run: go test -v ./... --cover