github.com/drone/go-convert@v0.0.0-20240307072510-6bd371c65e61/convert/bitbucket/testdata/parallel/example1.yaml (about) 1 pipelines: 2 default: 3 - step: # non-parallel step 4 script: 5 - ./build.sh 6 - parallel: # these 2 steps will run in parallel 7 steps: 8 - step: 9 script: 10 - ./integration-tests.sh --batch 1 11 - step: 12 script: 13 - ./integration-tests.sh --batch 2 14 - step: # non-parallel step 15 script: 16 - ./deploy.sh