Add .gitea/workflows/build-pr.yaml #7

Merged
Egamorf merged 1 commits from egamorf-patch-1 into main 2025-03-31 21:03:20 +02:00
Showing only changes of commit 97165f9e1a - Show all commits

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