github.com/drone/go-convert@v0.0.0-20240307072510-6bd371c65e61/convert/bitbucket/yaml/testdata/definitions/example3.yaml.golden (about) 1 { 2 "definitions": { 3 "caches": { 4 "my-bundler-cache": "vendor/bundle" 5 } 6 }, 7 "pipelines": { 8 "default": [ 9 { 10 "step": { 11 "caches": [ 12 "my-bundler-cache" 13 ], 14 "script": [ 15 "bundle install --path vendor/bundle", 16 "ruby -e 'print \"Hello, World\\n\"'" 17 ] 18 } 19 } 20 ] 21 } 22 }