Skip to content

Bump k8s.io/client-go from 0.29.4 to 0.30.0 #430

Bump k8s.io/client-go from 0.29.4 to 0.30.0

Bump k8s.io/client-go from 0.29.4 to 0.30.0 #430

Workflow file for this run

---
name: Test Incoming Changes
'on':
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-22.04
env:
SHELL: /bin/bash
steps:
- uses: actions/checkout@v4
- name: Set up Go 1.22
uses: actions/setup-go@v5
with:
go-version: 1.22.2
- uses: nosborn/[email protected]
with:
files: README.md
- uses: ludeeus/action-shellcheck@master
with:
ignore_paths: vendor
- uses: mfinelli/setup-shfmt@v3
- run: shfmt -d scripts/*.sh
- uses: crate-ci/typos@master
- uses: ibiqlik/action-yamllint@v3
with:
file_or_dir: .github/workflows/*.yml config/*.yaml
config_data: |
extends: default
rules:
line-length:
level: warning
trailing-spaces:
level: warning
brackets:
level: warning
empty-lines:
level: warning
- name: Run lint
run: make lint
build:
runs-on: ubuntu-22.04
env:
SHELL: /bin/bash
steps:
- uses: actions/checkout@v4
- name: Set up Go 1.22
uses: actions/setup-go@v5
with:
go-version: 1.22.2
- name: Install ginkgo
run: make install-ginkgo
- name: Compile test suites
run: ginkgo build -r ./tests
unittest:
runs-on: ubuntu-22.04
env:
SHELL: /bin/bash
steps:
- uses: actions/checkout@v4
- name: Set up Go 1.22
uses: actions/setup-go@v5
with:
go-version: 1.22.2
- name: Checkout the cnf-certification-test repo
uses: actions/checkout@v4
with:
repository: test-network-function/cnf-certification-test
path: cnf-certification-test
- name: Run Unit Tests
run: TNF_REPO_PATH=${GITHUB_WORKSPACE}/cnf-certification-test make unit-tests