Chat functionality is now fully handled by the Go backend (since v0.502). Remove the deprecated Rust chat server and all its references from: - CI/CD workflows (ci.yml, cd.yml, rust-ci.yml, chat-ci.yml) - Monitoring & proxy config (prometheus, caddy, haproxy) - Incus deployment scripts and documentation - Monorepo config (package.json, dependabot, GH templates)
22 lines
466 B
YAML
22 lines
466 B
YAML
name: Rust CI
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
paths:
|
|
- 'veza-stream-server/**'
|
|
pull_request:
|
|
branches: [main]
|
|
paths:
|
|
- 'veza-stream-server/**'
|
|
|
|
jobs:
|
|
clippy-stream:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: dtolnay/rust-toolchain@stable
|
|
with:
|
|
components: clippy
|
|
- name: Clippy lint
|
|
run: cargo clippy -- -D warnings
|
|
working-directory: veza-stream-server
|