mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-10 19:11:08 +00:00
0fa271f465
- Add json schema file - Add tests to validate sample pipeline files - Add new command `lint` to cli to test a directory or single file to use correct schema Example: `woodpecker-cli lint ./pipeline/schema/.woodpecker/` --- close #275 preparation for #276 Co-authored-by: 6543 <6543@obermui.de>
14 lines
261 B
YAML
14 lines
261 B
YAML
clone:
|
|
git:
|
|
image: plugins/git:next
|
|
depth: 50
|
|
path: bitbucket.org/foo/bar
|
|
recursive: true
|
|
submodule_override:
|
|
my-module: https://github.com/octocat/my-module.git
|
|
|
|
pipeline:
|
|
test:
|
|
image: alpine
|
|
commands:
|
|
- echo "test"
|