Skip to content

build(deps): bump github.com/onsi/ginkgo/v2 from 2.12.0 to 2.18.0 in /test/e2e #891

build(deps): bump github.com/onsi/ginkgo/v2 from 2.12.0 to 2.18.0 in /test/e2e

build(deps): bump github.com/onsi/ginkgo/v2 from 2.12.0 to 2.18.0 in /test/e2e #891

Workflow file for this run

name: proto2http
on:
push:
branches:
- "master"
pull_request:
branches:
- "master"
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
go: ["1.19.x"]
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v3
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Set up Go ${{ matrix.go }}
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
id: go
- name: do unit test
run: |
make init
make lint
make generate
make test-proto2http
make validate