Add .gitea/workflows/build-pr.yaml
Some checks failed
Game Ideas build for PR / build_blazor_app (pull_request) Has been cancelled

This commit is contained in:
2025-03-31 20:58:48 +02:00
parent feb3af1b58
commit 97165f9e1a

View File

@@ -0,0 +1,24 @@
name: Game Ideas build for PR
on:
pull_request:
types: [ opened, edited, closed, reopened, synchronize ]
branches:
- 'feature/**'
- main
jobs:
build_blazor_app:
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Setup DotNet
uses: actions/setup-dotnet@v4
with:
dotnet-version: '9'
- name: Build Blazor App
run: .\src\GameIdeas\Client\GameIdeas.BlazorApp\GameIdeas.BlazorApp.csproj
- name: Build API App
run: .\src\GameIdeas\Server\GameIdeas.WebAPI\GameIdeas.WebAPI.csproj