Skip to content

fix: prevent malformed CRD resources from crashing the controller #2

fix: prevent malformed CRD resources from crashing the controller

fix: prevent malformed CRD resources from crashing the controller #2

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: "1.23"
cache: true
- name: Run unit tests
run: make test
- name: Run integration tests
run: make test-integration