Files
game-ideas/.gitea/workflows/build-pr.yaml
Egamorf fbe4a591a3
All checks were successful
Game Ideas build for PR / build_blazor_app (pull_request) Successful in 30s
add dotnet build
2025-04-03 19:32:05 +02:00

25 lines
742 B
YAML

name: Game Ideas build for PR
on:
pull_request:
types: [ opened, edited, closed, reopened, synchronize ]
branches:
- 'feature/**'
- main
jobs:
build_blazor_app:
runs-on: ubuntu-latest
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: dotnet build ./src/GameIdeas/Client/GameIdeas.BlazorApp/GameIdeas.BlazorApp.csproj
- name: Build API App
run: dotnet build ./src/GameIdeas/Server/GameIdeas.WebAPI/GameIdeas.WebAPI.csproj