Skip to content

chore(deps): bump k8s.io/cli-runtime from 0.30.0 to 0.30.2 #1651

chore(deps): bump k8s.io/cli-runtime from 0.30.0 to 0.30.2

chore(deps): bump k8s.io/cli-runtime from 0.30.0 to 0.30.2 #1651

Workflow file for this run

name: CI
# Run on PR
on:
pull_request:
types:
- opened
- edited
- synchronize
- reopened
jobs:
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
with:
submodules: true
# Build
- name: Build
run: make build
test:
needs: build
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
with:
submodules: true
# Run tests
- name: Tests
run: make test
# lint:
# # The type of runner that the job will run on
# runs-on: ubuntu-latest
# # Steps represent a sequence of tasks that will be executed as part of the job
# steps:
# # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
# - uses: actions/checkout@v3
# with:
# submodules: true
# - name: Set up Go
# uses: actions/setup-go@v3
# with:
# go-version: 1.17
# # Run linter
# - name: Lint
# run: make lint