Skip to content

build(deps): bump golang.org/x/net from 0.8.0 to 0.17.0 #4

build(deps): bump golang.org/x/net from 0.8.0 to 0.17.0

build(deps): bump golang.org/x/net from 0.8.0 to 0.17.0 #4

Workflow file for this run

# Copyright Confidential Containers Contributors
# SPDX-License-Identifier: Apache-2.0
#
# Run tests for peerpod and peerpodconfig controllers.
---
name: controllers
on:
pull_request:
workflow_dispatch:
jobs:
peerpodconfig_job:
name: peerpodconfig-ctrl
runs-on: ubuntu-latest
defaults:
run:
working-directory: peerpodconfig-ctrl
strategy:
matrix:
go_version:
- "1.20.7"
steps:
- name: Checkout the pull request code
uses: actions/checkout@v3
- name: Setup Golang version ${{ matrix.go_version }}
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go_version }}
- name: Verify go modules and manifests
run: make verify
- name: Build the controller manager
run: make build
- name: Run unit tests
run: make test
- name: Build the controller image
run: make docker-build
peerpod_job:
name: peerpod-ctrl
runs-on: ubuntu-latest
defaults:
run:
working-directory: peerpod-ctrl
strategy:
matrix:
go_version:
- "1.20.7"
steps:
- name: Checkout the pull request code
uses: actions/checkout@v3
- name: Install build dependencies
run: |
sudo apt-get update -y
sudo apt-get install -y libvirt-dev
- name: Setup Golang version ${{ matrix.go_version }}
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go_version }}
- name: Verify go modules and manifests
run: make verify
- name: Build the controller manager
run: make build
- name: Run unit tests
run: make test
- name: Build the controller image
run: make docker-build