Skip to content

Bump google.golang.org/protobuf from 1.32.0 to 1.33.0 #228

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

Bump google.golang.org/protobuf from 1.32.0 to 1.33.0 #228

Workflow file for this run

# Copyright 2023 Red Hat, Inc
#
# 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 tests
on:
push:
branches: ["master", "main"]
pull_request:
jobs:
gotests:
runs-on: ubuntu-latest
strategy:
matrix:
go-version:
- "1.20"
name: Tests for Go ${{ matrix.go-version}}
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Show env
run: env
- name: Unit tests
run: make test
- name: Retrieve code coverage
run: ./check_coverage.sh
- name: Update coverage
run: bash <(curl -s https://codecov.io/bash)