github.com/drone/go-convert@v0.0.0-20240307072510-6bd371c65e61/convert/gitlab/yaml/testdata/job_keywords/dependencies/example-1.yaml.golden (about)

     1  build linux:
     2      artifacts:
     3          paths:
     4              - binaries/
     5      script:
     6          - make build:linux
     7      stage: build
     8  build osx:
     9      artifacts:
    10          paths:
    11              - binaries/
    12      script:
    13          - make build:osx
    14      stage: build
    15  deploy:
    16      environment:
    17          name: production
    18      script:
    19          - make deploy
    20      stage: deploy
    21  test linux:
    22      dependencies:
    23          - build linux
    24      script:
    25          - make test:linux
    26      stage: test
    27  test osx:
    28      dependencies:
    29          - build osx
    30      script:
    31          - make test:osx
    32      stage: test