Skip to content

build(go): bump k8s.io/api from 0.26.3 to 0.28.1 #129

build(go): bump k8s.io/api from 0.26.3 to 0.28.1

build(go): bump k8s.io/api from 0.26.3 to 0.28.1 #129

Workflow file for this run

name: CI - Application
on:
pull_request:
paths-ignore:
- chart/**
push:
branches: [main]
paths-ignore:
- chart/**
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version-file: go.mod
- name: Run lint
uses: golangci/golangci-lint-action@v3
unit-test:
name: Unit Tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version-file: go.mod
- name: Setup Kubernetes cluster
uses: helm/kind-action@v1.7.0
with:
cluster_name: switchboard-tests
- name: Setup just
uses: extractions/setup-just@v1
- name: Run unit tests
run: just unit-test
env:
KIND_CLUSTER_NAME: switchboard-tests
- name: Upload coverage
uses: codecov/codecov-action@v3