Files
game-ideas/.gitea/workflows/build-pr.yaml
Egamorf 086b68c539
All checks were successful
Game Ideas build for PR / build_blazor_app (pull_request) Successful in 38s
Add first miggration
2025-04-09 23:10:03 +02:00

25 lines
735 B
YAML

name: Game Ideas build for PR
on:
pull_request:
types: [ opened, edited, 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