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

     1  # https://circleci.com/docs/config-intro/#part-1-using-the-shell
     2  
     3  version: 2.1
     4  jobs:
     5    build:
     6      docker:
     7        - image: alpine:3.15
     8          auth:
     9            username: mydockerhub-user
    10            password: $DOCKERHUB_PASSWORD  # context / project UI env-var reference
    11      steps:
    12        - run:
    13            name: The First Step
    14            command: |
    15              echo 'Hello World!'
    16              echo 'This is the delivery pipeline'
    17  
    18  workflows:
    19    Example-Workflow:
    20      jobs:
    21        - build