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

     1  lint:
     2      needs: []
     3      script:
     4          - echo "Linting..."
     5      stage: test
     6  linux:build:
     7      script:
     8          - echo "Building linux..."
     9      stage: build
    10  linux:rspec:
    11      needs:
    12          - job: linux:build
    13      script:
    14          - echo "Running rspec on linux..."
    15      stage: test
    16  mac:build:
    17      script:
    18          - echo "Building mac..."
    19      stage: build
    20  mac:rspec:
    21      needs:
    22          - job: mac:build
    23      script:
    24          - echo "Running rspec on mac..."
    25      stage: test
    26  production:
    27      environment:
    28          name: production
    29      script:
    30          - echo "Running production..."
    31      stage: deploy