Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 687 Bytes

README.md

File metadata and controls

27 lines (19 loc) · 687 Bytes

BitBucket Pipelines YAML runner/parser Build Status

Runner

See Examples

Parser

Parse pipelines to Go structs.

Using the following example:

image: python:2.7
 
pipelines:
  default:
    - step:
        script:
          - python --version
          - python myScript.py

Will output the following struct:

{Image:python:2.7 Pipelines:{Default:[{Step:{Scripts:[python --version python myScript.py]}}] Branches:[] Tags:[] Bookmarks:[]}}