Skip to content
bitzorcas
EN

Guide

CI/CD

Planned CI/CD pipeline — GitHub Actions workflow, build/test/deploy stages, and environment configuration.

Last updated

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 → Deploy

Planned configuration

name: CI/CD
on:
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 minimal

See also