Some checks failed
Veza CD / Build and push images (push) Failing after 1m10s
Chromatic / Visual regression tests (push) Failing after 12s
Veza CI/CD / TMT Vital — Backend (Go) (push) Failing after 3m33s
Veza CI/CD / TMT Vital — Rust Services (push) Failing after 4m48s
Veza CI/CD / TMT Vital — Frontend (Web) (push) Failing after 4m54s
Veza CI/CD / Storybook Audit (push) Failing after 6m50s
Veza CI/CD / E2E Critical (@critical) (push) Failing after 5m2s
Veza CI/CD / E2E Full (shard 1/4) (push) Failing after 4m49s
Veza CI/CD / E2E Full (shard 2/4) (push) Failing after 5m5s
Veza CI/CD / E2E Full (shard 3/4) (push) Failing after 5m9s
Veza CI/CD / E2E Full (shard 4/4) (push) Failing after 5m0s
CodeQL SAST / analyze (go) (push) Failing after 11s
CodeQL SAST / analyze (javascript-typescript) (push) Failing after 9s
Security Scan / Secret Scanning (gitleaks) (push) Failing after 4s
Stream Server CI / test (push) Failing after 11s
Veza CD / Deploy to staging (push) Has been skipped
Veza CI/CD / Notify on failure (push) Successful in 2s
Veza CD / Smoke tests post-deploy (push) Has been skipped
- Replace dtolnay/rust-toolchain with manual rustup (not on forgejo mirror) - Replace docker-compose with docker compose (v2) - Add rsync install before tmt Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
44 lines
1.2 KiB
YAML
44 lines
1.2 KiB
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"
|
|
|
|
env:
|
|
GIT_SSL_NO_VERIFY: "true"
|
|
NODE_TLS_REJECT_UNAUTHORIZED: "0"
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
|
|
defaults:
|
|
run:
|
|
working-directory: veza-stream-server
|
|
|
|
steps:
|
|
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
|
|
|
- name: Set up Rust
|
|
run: |
|
|
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain stable --component clippy
|
|
echo "$HOME/.cargo/bin" >> $GITHUB_PATH
|
|
|
|
- name: Lint with clippy
|
|
run: cargo clippy --all-targets -- -D warnings
|
|
|
|
- name: Audit dependencies
|
|
uses: actions-rust-lang/audit@v1 # TODO: pin to SHA — no known mapping provided
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Run tests
|
|
run: cargo test --all
|