github.com/drone/go-convert@v0.0.0-20240307072510-6bd371c65e61/convert/bitbucket/yaml/testdata/definitions/example3.yaml (about)

     1  definitions:
     2    caches:
     3      my-bundler-cache: vendor/bundle
     4  
     5  pipelines:
     6    default:
     7      - step:
     8          caches:
     9            - my-bundler-cache # Cache is defined above in the definitions section
    10          script:
    11            - bundle install --path vendor/bundle
    12            - ruby -e 'print "Hello, World\n"'