Skip to content

Bump google.golang.org/protobuf from 1.28.0 to 1.33.0 #38

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

Bump google.golang.org/protobuf from 1.28.0 to 1.33.0 #38

Workflow file for this run

# Copyright 2022 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: Go
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lints:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: '^1.18.0'
- name: go fmt
run: |
go fmt . ./cmd/* ./internal/* | tee -a modified
if [[ $(cat modified) ]]; then exit 1; fi;
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: '^1.18.0'
- name: go build
run: go build
- name: 'go build ./cmd/protoscope'
run: 'go build ./cmd/protoscope'
- name: go test
run: go test
fuzz:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: '^1.18.0'
- name: go fuzz
run: go test -fuzz FuzzRoundTrip -fuzztime 100x