Skip to content

build(deps): bump google.golang.org/grpc from 1.47.0 to 1.53.0 #8

build(deps): bump google.golang.org/grpc from 1.47.0 to 1.53.0

build(deps): bump google.golang.org/grpc from 1.47.0 to 1.53.0 #8

Workflow file for this run

# Copyright Confidential Containers Contributors
# SPDX-License-Identifier: Apache-2.0
#
# Run tests for peer-pod controller.
---
name: controller
on: [pull_request]
jobs:
controller_job:
name: peerpodconfig-ctrl
runs-on: ubuntu-latest
defaults:
run:
working-directory: peerpodconfig-ctrl
strategy:
matrix:
go_version:
- 1.19
steps:
- name: Checkout the pull request code
uses: actions/checkout@v3
- name: Setup Golang version ${{ matrix.go_version }}
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go_version }}
- name: Verify go modules
run: make verify-modules
- name: Verify go generated code
run: make verify-gen
- name: Build the controller manager
run: make build
- name: Run unit tests
run: make test
- name: Build the controller image
run: make docker-build