85aecd5b13
Each step runs in a fresh container, so NuGet packages restored in one step aren't available in the next. Consolidating restore/build/test into single steps. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
21 lines
415 B
YAML
21 lines
415 B
YAML
# Pull Request Pipeline - Build and test only
|
|
when:
|
|
- event: pull_request
|
|
|
|
labels:
|
|
platform: linux/amd64
|
|
|
|
clone:
|
|
- name: clone
|
|
image: woodpeckerci/plugin-git
|
|
settings:
|
|
lfs: false
|
|
|
|
steps:
|
|
- name: build-and-test
|
|
image: mcr.microsoft.com/dotnet/sdk:10.0
|
|
commands:
|
|
- dotnet restore
|
|
- dotnet build -c Release
|
|
- dotnet test -c Release --logger "console;verbosity=detailed"
|