Skip to content

Bump google.golang.org/protobuf from 1.27.1 to 1.33.0 #106

Bump google.golang.org/protobuf from 1.27.1 to 1.33.0

Bump google.golang.org/protobuf from 1.27.1 to 1.33.0 #106

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
lint:
name: lint
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: '1.22'
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Code Formatting
run: make fmtcheck
- name: Linter
uses: golangci/golangci-lint-action@v6
build:
name: test
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: '1.22'
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Test
run: make test
- name: Integration Test
run: make integration-test
- name: EndToEnd test
run: make end2end-test