- Fix chat-ci.yml and stream-ci.yml to reference veza-chat-server/ and veza-stream-server/ instead of non-existent apps/ paths - Add veza-common/ to CI triggers so shared library changes are tested - Reactivate CD pipeline with Docker registry push and Kubernetes deployment steps (gated on secrets availability) - Standardize Redis dependency to v0.32 across both Rust services Co-authored-by: Cursor <cursoragent@cursor.com>
36 lines
689 B
YAML
36 lines
689 B
YAML
name: Stream Server CI
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- "veza-stream-server/**"
|
|
- "veza-common/**"
|
|
- ".github/workflows/stream-ci.yml"
|
|
pull_request:
|
|
paths:
|
|
- "veza-stream-server/**"
|
|
- "veza-common/**"
|
|
- ".github/workflows/stream-ci.yml"
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
|
|
defaults:
|
|
run:
|
|
working-directory: veza-stream-server
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Set up Rust
|
|
uses: dtolnay/rust-toolchain@stable
|
|
with:
|
|
components: clippy
|
|
|
|
- name: Lint with clippy
|
|
run: cargo clippy --all-targets -- -D warnings
|
|
|
|
- name: Run tests
|
|
run: cargo test --all
|
|
|