Skip to content

Bump sigs.k8s.io/custom-metrics-apiserver from 1.28.1-0.20240425173932-1a855fe8c789 to 1.30.0 in /custom-metrics-stackdriver-adapter #172

Bump sigs.k8s.io/custom-metrics-apiserver from 1.28.1-0.20240425173932-1a855fe8c789 to 1.30.0 in /custom-metrics-stackdriver-adapter

Bump sigs.k8s.io/custom-metrics-apiserver from 1.28.1-0.20240425173932-1a855fe8c789 to 1.30.0 in /custom-metrics-stackdriver-adapter #172

Workflow file for this run

name: continuous-integration
on:
push:
branches:
- master
tags:
- v0.*
pull_request:
branches:
- master
permissions:
contents: read
env:
SUDO: sudo
GO_VERSION: "^1.21"
jobs:
ci-unit-tests-custom-metrics-stackdriver-adapter:
name: ci-unit-tests-custom-metrics-stackdriver-adapter
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Set up Go 1.x
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
id: go
- name: Unit tests
run: |
cd custom-metrics-stackdriver-adapter
make test
ci-build-custom-metrics-stackdriver-adapter:
name: ci-build-custom-metrics-stackdriver-adapter
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Set up Go 1.x
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
id: go
- name: Build
run: |
cd custom-metrics-stackdriver-adapter
make build