Skip to content

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

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 #97

Workflow file for this run

# Copyright 2019 Iguazio
#
# 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: CI
on: [push, pull_request]
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
cache: true
go-version-file: "go.mod"
- name: Lint
run: make lint
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
cache: true
go-version-file: "go.mod"
- name: Run test
run: make test
build:
name: Build docker images
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
cache: true
go-version-file: "go.mod"
- name: Build docker images
run: make docker-images