github.com/drone/go-convert@v0.0.0-20240307072510-6bd371c65e61/convert/travis/testdata/database/postgres.yaml.golden (about)

     1  kind: pipeline
     2  spec:
     3    stages:
     4    - desc: converted from travis.yml
     5      name: pipeline
     6      spec:
     7        steps:
     8        - name: postgresql
     9          spec:
    10            envs:
    11              POSTGRES_PASSWORD: postgres
    12              POSTGRES_USER: postgres
    13            image: postgres
    14            ports:
    15            - "5432"
    16          type: background
    17        - name: install
    18          spec:
    19            run: bundle install --jobs=3 --retry=3
    20          type: script
    21        - name: script
    22          spec:
    23            run: rake
    24          type: script
    25      type: ci
    26  version: 1