Skip to content

Add support for Kubernetes 1.29.4 #1307

Add support for Kubernetes 1.29.4

Add support for Kubernetes 1.29.4 #1307

Workflow file for this run

on:
push:
branches:
- master
pull_request:
branches:
- master
name: Tests
jobs:
test:
strategy:
matrix:
go-version: [1.20.x]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v3
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
# Optional: version of golangci-lint to use in form of v1.2 or v1.2.3 or `latest` to use the latest version
version: v1.53.2
- name: Tests
run: /bin/bash -c make gotest
- name: Build e2e
run: make build-e2e
- name: Charts
run: make test-charts
# - name: Slack
# uses: 8398a7/action-slack@v3
# with:
# status: ${{ job.status }}
# fields: repo,message,commit,author,action,eventName,ref,workflow,job,took
# author_name: Github Actions
# icon_emoji: ":octocat:"
# env:
# SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
# if: always()