github.com/drone/go-convert@v0.0.0-20240307072510-6bd371c65e61/convert/circle/testdata/orbs/inline.yaml.golden (about)

     1  kind: pipeline
     2  spec:
     3    stages:
     4    - name: my-orb/my_job
     5      spec:
     6        platform:
     7          arch: amd64
     8          os: linux
     9        runtime:
    10          spec: {}
    11          type: cloud
    12        steps:
    13        - spec:
    14            run: |-
    15              set -eo pipefail
    16              echo "Run my tests"
    17            shell: bash
    18          type: script
    19        - name: store_test_results
    20          spec:
    21            reports:
    22            - path:
    23              - test-results
    24              type: junit
    25            run: echo upload unit test results
    26          type: script
    27      type: ci
    28  version: 1