Skip to content

refactor: declarative convergence rewrite for Worker Reconciler with integration tests #4

refactor: declarative convergence rewrite for Worker Reconciler with integration tests

refactor: declarative convergence rewrite for Worker Reconciler with integration tests #4

Workflow file for this run

name: HiClaw Controller Tests
on:
pull_request:
paths:
- 'hiclaw-controller/**'
- '.github/workflows/test-controller.yml'
push:
branches: [main]
paths:
- 'hiclaw-controller/**'
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: hiclaw-controller/go.mod
cache-dependency-path: hiclaw-controller/go.sum
- name: Unit tests
working-directory: hiclaw-controller
run: make test-unit
- name: Integration tests (envtest)
working-directory: hiclaw-controller
run: make test-integration