Skip to content

build(deps): bump google.golang.org/grpc from 1.58.0 to 1.58.1 #92

build(deps): bump google.golang.org/grpc from 1.58.0 to 1.58.1

build(deps): bump google.golang.org/grpc from 1.58.0 to 1.58.1 #92

Workflow file for this run

name: Tests / Code Coverage
on:
pull_request:
merge_group:
push:
branches:
- main
permissions:
contents: read
concurrency:
group: ci-${{ github.ref }}-tests
cancel-in-progress: true
jobs:
test-rosetta:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version: "1.20"
check-latest: true
cache: true
cache-dependency-path: go.sum
- uses: technote-space/get-diff-action@v6.1.2
id: git_diff
with:
PATTERNS: |
*
**/*.go
go.mod
go.sum
Makefile
- name: tests
if: env.GIT_DIFF
run: |
make plugin && make test
go test -mod=readonly -timeout 30m -coverprofile=coverage.out -covermode=atomic ./...