Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,22 @@ jobs:
- name: Run unit tests
run: just test-unit

cache-proxy-tests:
runs-on: ubuntu-24.04-arm
steps:
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Set up just
uses: extractions/setup-just@dd310ad5a97d8e7b41793f8ef055398d51ad4de6 # v2.0.0

- name: Set up Go
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
with:
go-version-file: go.mod

- name: Run cache-proxy tests
run: just test-cache-proxy

integration-tests:
needs: unit-tests
runs-on: ubuntu-24.04-arm
Expand Down
7 changes: 6 additions & 1 deletion justfile
Original file line number Diff line number Diff line change
Expand Up @@ -262,6 +262,11 @@ test:
test-unit:
go test -v -p 1 . ./configresolve/... ./duckdbservice/... ./server/... ./transpiler/... ./internal/...

# Run cache-proxy tests
[group('test')]
test-cache-proxy:
go test -v ./cmd/cache-proxy/...

# Run integration tests
[group('test')]
test-integration:
Expand Down Expand Up @@ -355,7 +360,7 @@ lint:

# Run what CI runs locally (excluding kind-backed K8s integration)
[group('test')]
ci: lint test-unit test-integration test-controlplane test-configstore-integration test-controlplane-k8s
ci: lint test-unit test-cache-proxy test-integration test-controlplane test-configstore-integration test-controlplane-k8s

# === Metrics ===

Expand Down
Loading