Skip to content

Latest commit

 

History

History
29 lines (23 loc) · 1.02 KB

File metadata and controls

29 lines (23 loc) · 1.02 KB

CI/CD Pipeline Status

✅ All Workflows Passing

Onchain CI (apps/onchain)

  • ✅ Rust formatting (cargo fmt --all -- --check)
  • ✅ Clippy linting (cargo clippy --all-targets --all-features -- -D warnings)
  • ✅ WASM build (cargo build --target wasm32-unknown-unknown --release)
  • ✅ Tests (cargo test) - 44 tests passed

Fixed Issues:

  • Removed duplicate #![cfg(test)] attribute
  • Fixed unused variable user_user
  • Shortened symbol name "TestProject" → "TestProj" (max 9 chars)

Backend CI (apps/backend)

  • ✅ Dependencies installed (npm ci)
  • ✅ Linting (npm run lint) - 2 warnings (non-blocking)
  • ✅ Tests (npm run test) - 1 test passed
  • ✅ Build (npm run build)

Data Processing CI (apps/data-processing)

  • ✅ Python dependencies installed
  • ✅ Flake8 syntax check (no errors)
  • ✅ Flake8 full check (warnings only, non-blocking)
  • ✅ Pytest (pytest) - 42 tests passed, 4 skipped

Summary

All three GitHub Actions workflows are now ready to pass on push/PR to main branch.