github.com/drone/go-convert@v0.0.0-20240307072510-6bd371c65e61/convert/harness/downgrader/testdata/parallel.yaml (about)

     1  kind: pipeline
     2  spec:
     3    stages:
     4    - name: test
     5      spec:
     6        steps:
     7        - spec:
     8            steps:
     9            - name: test1
    10              spec:
    11                image: busybox:latest
    12                run: |-
    13                  echo "Do a test here"
    14                  echo "For example run a test suite"
    15              type: script
    16            - name: test2
    17              spec:
    18                image: busybox:latest
    19                run: |-
    20                  echo "Do another parallel test here"
    21                  echo "For example run a lint test"
    22              type: script
    23          type: parallel
    24      type: ci
    25  version: 1