Contentless/.woodpecker/main.yml

12 lines
326 B
YAML
Raw Normal View History

2023-12-20 22:43:58 +01:00
steps:
build:
2023-12-21 18:33:46 +01:00
image: mcr.microsoft.com/dotnet/sdk:8.0-jammy
2023-12-20 22:43:58 +01:00
commands:
- dotnet build Contentless
test:
2023-12-21 18:33:46 +01:00
image: mcr.microsoft.com/dotnet/sdk:8.0-jammy
2023-12-20 22:43:58 +01:00
commands:
2023-12-21 18:05:04 +01:00
- dotnet restore Test
2023-12-21 17:50:44 +01:00
- dotnet run --project Contentless Test/Content/Content.mgcb Test/Test.csproj
- dotnet build Test