CI/CD pipeline configuration is planned for BitzOrcas. This guide will be added with a GitHub Actions workflow template.
Planned pipeline stages
Build → Unit Tests → Architecture Tests → Integration Tests → Build Docker Image → Push to Registry → DeployPlanned configuration
name: CI/CDon: push: branches: [main] pull_request: branches: [main]
jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: actions/setup-dotnet@v4 with: dotnet-version: '10.0.x' - run: dotnet restore - run: dotnet build --no-restore - run: dotnet test --no-build --verbosity minimalSee also
- Production checklist — Deployment security