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

     1  # https://circleci.com/docs/hello-world/#echo-hello-world-cloud
     2  
     3  version: 2.1
     4  
     5  jobs:
     6    hello-job:
     7      docker:
     8        - image: cimg/node:17.2.0 # the primary container, where your job's commands are run
     9          auth:
    10            username: mydockerhub-user
    11            password: $DOCKERHUB_PASSWORD  # context / project UI env-var reference
    12      steps:
    13        - checkout # check out the code in the project directory
    14        - run: echo "hello world" # run the `echo` command
    15  
    16  workflows:
    17    my-workflow:
    18      jobs:
    19        - hello-job