From 8350220a4f148da9b121fed0814d60d27bc68ec5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20N=C3=A4geli?= Date: Mon, 23 Dec 2024 11:54:39 +0100 Subject: [PATCH] Add all other project types --- .github/workflows/ci.yml | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f26aef0..743000b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -43,3 +43,38 @@ jobs: dotnet new genhttp-webservice cd webservice.Tests dotnet test + - name: Test controller framework + run: | + mkdir -p /tmp/genhttp/controllers/ + cd /tmp/genhttp/controllers/ + dotnet new genhttp-webservice-controllers + cd controllers.Tests + dotnet test + - name: Test minimal framework + run: | + mkdir -p /tmp/genhttp/minimal/ + cd /tmp/genhttp/minimal/ + dotnet new genhttp-webservice-minimal + cd minimal.Tests + dotnet test + - name: Test static website + run: | + mkdir -p /tmp/genhttp/static/ + cd /tmp/genhttp/static/ + dotnet new genhttp-website-static + cd static.Tests + dotnet test + - name: Test SPA + run: | + mkdir -p /tmp/genhttp/spa/ + cd /tmp/genhttp/spa/ + dotnet new genhttp-spa + cd spa.Tests + dotnet test + - name: Test websockets + run: | + mkdir -p /tmp/genhttp/websockets/ + cd /tmp/genhttp/websockets/ + dotnet new genhttp-websocket + cd websockets.Tests + dotnet test