Skip to content

Update docker/login-action action to v3.6.0 #1323

Update docker/login-action action to v3.6.0

Update docker/login-action action to v3.6.0 #1323

Workflow file for this run

name: Test and Build Binary
on:
push:
branches:
- main
pull_request:
jobs:
test-build:
name: test-build
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v6
with:
go-version: ^1.25
- uses: actions/checkout@v5
- name: Install kubebuilder
run: |
curl -L -o kubebuilder https://go.kubebuilder.io/dl/latest/$(go env GOOS)/$(go env GOARCH)
chmod +x kubebuilder
mv kubebuilder /usr/local/bin/
- name: Create k8s Kind cluster
uses: helm/kind-action@v1
- name: Run tests against k8s Kind cluster
run: make e2e
- name: Build
run: make build