Files
PaperlessMCP/.woodpecker/pr.yml
T
Barry Walker 61f2d77591 fix: disable Git LFS in clone step
LFS is not installed in the Woodpecker runner and not needed for
this repo anyway.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-13 14:35:53 -05:00

26 lines
564 B
YAML

# Pull Request Pipeline - Build and test only
when:
- event: pull_request
clone:
git:
lfs: false
steps:
- name: restore
image: mcr.microsoft.com/dotnet/sdk:10.0-preview
commands:
- dotnet restore
- name: build
image: mcr.microsoft.com/dotnet/sdk:10.0-preview
commands:
- dotnet build --no-restore -c Release
depends_on: [restore]
- name: test
image: mcr.microsoft.com/dotnet/sdk:10.0-preview
commands:
- dotnet test --no-build -c Release --logger "console;verbosity=detailed"
depends_on: [build]