Go to file
Thomas Boerger 1c2e4e9916
Add matrix legacy convert testdata
2019-01-28 17:18:33 +01:00
samples initial commit 2019-01-22 15:44:17 -08:00
yaml Add matrix legacy convert testdata 2019-01-28 17:18:33 +01:00
.drone.yml initial commit 2019-01-22 15:44:17 -08:00
.gitignore initial commit 2019-01-22 15:44:17 -08:00
README.md initial commit 2019-01-22 15:44:17 -08:00
main.go Add convert sub-command 2019-01-28 16:32:24 +01:00

README.md

Package yaml provides a parser, linter, formatter and compiler for the drone configuration file format.

Lint the yaml file:

$ drone-yaml lint samples/simple.yml

Format the yaml file:

$ drone-yaml fmt samples/simple.yml
$ drone-yaml fmt samples/simple.yml --save

Sign the yaml file using a 32-bit secret key:

$ drone-yaml sign 642909eb4c3d47e33999235c0598353c samples/simple.yml
$ drone-yaml sign 642909eb4c3d47e33999235c0598353c samples/simple.yml --save

Verify the yaml file signature:

$ drone-yaml verify 642909eb4c3d47e33999235c0598353c samples/simple.yml

Compile the yaml file:

$ drone-yaml compile samples/simple.yml > samples/simple.json