Skip to content

enhancement: Allow starter custom resource specifications #1401

enhancement: Allow starter custom resource specifications

enhancement: Allow starter custom resource specifications #1401

Workflow file for this run

---
name: "Unit Test"
permissions: {}
on:
- push
- pull_request
jobs:
test:
strategy:
matrix:
go-version: [1.23.x]
k8s_version: [1.24.1, 1.27.1, 1.30.0]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Test
run: |
make test-setup
make test
env:
ENVTEST_K8S_VERSION: ${{ matrix.k8s_version }}