Files
PaperlessMCP/.woodpecker/pr.yml
T
Barry Walker 5cd4ef8401 fix: skip default clone to avoid LFS failure
Woodpecker's default clone step fails when git-lfs isn't installed.
Using manual clone with alpine/git instead.

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

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

31 lines
718 B
YAML

# Pull Request Pipeline - Build and test only
when:
- event: pull_request
skip_clone: true
steps:
- name: clone
image: alpine/git
commands:
- git clone --depth=1 ${CI_REPO_CLONE_URL} .
- git checkout ${CI_COMMIT_SHA}
- name: restore
image: mcr.microsoft.com/dotnet/sdk:10.0-preview
commands:
- dotnet restore
depends_on: [clone]
- 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]