Files
PaperlessMCP/.woodpecker/pr.yml
T
Barry Walker 85aecd5b13 fix: consolidate build steps to share NuGet cache
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>
2026-01-13 15:47:19 -05:00

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"