From 71496065d63ec068497a4f244eb2f5c271d58528 Mon Sep 17 00:00:00 2001 From: chullybun Date: Thu, 26 Oct 2023 08:40:25 -0700 Subject: [PATCH] CI other samples. --- .github/workflows/CI.yml | 21 +++++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index f74987192..ffd08fb32 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -51,7 +51,6 @@ jobs: dotnet restore ./samples/Demo/Beef.Demo.Abc.Database dotnet restore ./samples/Demo/Beef.Demo.Test - - name: Build 'Samples/Demo' projects run: | dotnet build ./samples/Demo/Beef.Demo.CodeGen --no-restore @@ -60,4 +59,22 @@ jobs: dotnet build ./samples/Demo/Beef.Demo.Business --no-restore dotnet build ./samples/Demo/Beef.Demo.Api --no-restore dotnet build ./samples/Demo/Beef.Demo.Abc.Database --no-restore - dotnet build ./samples/Demo/Beef.Demo.Test --no-restore \ No newline at end of file + dotnet build ./samples/Demo/Beef.Demo.Test --no-restore + + - name: Restore 'Samples/Cdr.Banking' dependencies + run: | + dotnet restore ./samples/Cdr.Banking/Cdr.Banking.CodeGen + dotnet restore ./samples/Cdr.Banking/Cdr.Banking.Database + dotnet restore ./samples/Cdr.Banking/Cdr.Banking.Common + dotnet restore ./samples/Cdr.Banking/Cdr.Banking.Business + dotnet restore ./samples/Cdr.Banking/Cdr.Banking.Api + dotnet restore ./samples/Cdr.Banking/Cdr.Banking.Test + + - name: Build 'Samples/Cdr.Banking' projects + run: | + dotnet build ./samples/Cdr.Banking/Cdr.Banking.CodeGen --no-restore + dotnet build ./samples/Cdr.Banking/Cdr.Banking.Database --no-restore + dotnet build ./samples/Cdr.Banking/Cdr.Banking.Common --no-restore + dotnet build ./samples/Cdr.Banking/Cdr.Banking.Business --no-restore + dotnet build ./samples/Cdr.Banking/Cdr.Banking.Api --no-restore + dotnet build ./samples/Cdr.Banking/Cdr.Banking.Test --no-restore \ No newline at end of file